Skip to content

Commit c164697

Browse files
committed
Coding standards cleanup.
1 parent 1ce360e commit c164697

File tree

11 files changed

+36
-25
lines changed

11 files changed

+36
-25
lines changed

dbtng_example/dbtng_example.install

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ function dbtng_example_install() {
2222
'age' => 0,
2323
);
2424
db_insert('dbtng_example')
25-
->fields($fields)
26-
->execute();
25+
->fields($fields)
26+
->execute();
2727

2828
// Add another entry.
2929
$fields = array(
@@ -33,8 +33,8 @@ function dbtng_example_install() {
3333
'uid' => 1,
3434
);
3535
db_insert('dbtng_example')
36-
->fields($fields)
37-
->execute();
36+
->fields($fields)
37+
->execute();
3838
}
3939

4040
/**

dbtng_example/src/DbtngExampleStorage.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DbtngExampleStorage {
2828
*
2929
* @see db_insert()
3030
*/
31-
public static function insert($entry) {
31+
public static function insert(array $entry) {
3232
$return_value = NULL;
3333
try {
3434
$return_value = db_insert('dbtng_example')
@@ -56,13 +56,13 @@ public static function insert($entry) {
5656
*
5757
* @see db_update()
5858
*/
59-
public static function update($entry) {
59+
public static function update(array $entry) {
6060
try {
6161
// db_update()...->execute() returns the number of rows updated.
6262
$count = db_update('dbtng_example')
63-
->fields($entry)
64-
->condition('pid', $entry['pid'])
65-
->execute();
63+
->fields($entry)
64+
->condition('pid', $entry['pid'])
65+
->execute();
6666
}
6767
catch (\Exception $e) {
6868
drupal_set_message(t('db_update failed. Message = %message, query= %query', array(
@@ -83,10 +83,10 @@ public static function update($entry) {
8383
*
8484
* @see db_delete()
8585
*/
86-
public static function delete($entry) {
86+
public static function delete(array $entry) {
8787
db_delete('dbtng_example')
88-
->condition('pid', $entry['pid'])
89-
->execute();
88+
->condition('pid', $entry['pid'])
89+
->execute();
9090
}
9191

9292
/**
@@ -161,7 +161,7 @@ public static function delete($entry) {
161161
* @see http://drupal.org/node/310072
162162
* @see http://drupal.org/node/310075
163163
*/
164-
public static function load($entry = array()) {
164+
public static function load(array $entry = array()) {
165165
// Read all fields from the dbtng_example table.
166166
$select = db_select('dbtng_example', 'example');
167167
$select->fields('example');

field_example/tests/src/Functional/ColorBackgroundFormatterTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ public function testSingleValueField() {
5151
}
5252

5353
/**
54+
* Tests a multi-value field.
55+
*
5456
* Test the following scenarios in Field example:
5557
* - Creates a content type.
5658
* - Adds a multivalued field_example_rgb to it.

file_example/src/Form/FileExampleReadWriteForm.php

+4
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,8 @@ public function buildForm(array $form, FormStateInterface $form_state) {
400400
* * @param array $form
401401
* An associative array containing the structure of the form.
402402
*
403+
* @param array &$form
404+
* The form array.
403405
* @param \Drupal\Core\Form\FormStateInterface $form_state
404406
* The current state of the form.
405407
*/
@@ -463,6 +465,8 @@ public function handleManagedFile(array &$form, FormStateInterface $form_state)
463465
* * @param array $form
464466
* An associative array containing the structure of the form.
465467
*
468+
* @param array &$form
469+
* The form array.
466470
* @param \Drupal\Core\Form\FormStateInterface $form_state
467471
* The current state of the form.
468472
*/

hooks_example/hooks_example.module

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* Examples demonstrating how to implement and invoke hooks.
66
*/
77

8-
use \Drupal\Core\Entity\Display\EntityViewDisplayInterface;
9-
use \Drupal\Core\Entity\EntityInterface;
10-
use \Drupal\Core\Form\FormStateInterface;
11-
use \Drupal\node\NodeInterface;
12-
use \Drupal\Core\Routing\RouteMatchInterface;
8+
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
9+
use Drupal\Core\Entity\EntityInterface;
10+
use Drupal\Core\Form\FormStateInterface;
11+
use Drupal\node\NodeInterface;
12+
use Drupal\Core\Routing\RouteMatchInterface;
1313

1414
/**
1515
* @defgroup hooks_example Example: Hooks

phpunit_example/tests/src/Unit/DisplayManagerTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public function testSimpleMockDisplayManager() {
4040
// expects($this->any()) tells the mock to return this value any time
4141
// the method is called.
4242
$mock->expects($this->any())
43-
->method('getDisplayName')
44-
->will($this->returnValue('the display name'));
43+
->method('getDisplayName')
44+
->will($this->returnValue('the display name'));
4545

4646
// Create a DisplayManager, the class we're actually testing here.
4747
$dm = new DisplayManager();

queue_example/src/Forms/QueueExampleForm.php

+4
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ class QueueExampleForm extends FormBase {
5353
* Queue factory service to get new/existing queues for use.
5454
* @param \Drupal\Core\Database\Connection $database
5555
* The database connection to be used.
56+
* @param Drupal\Core\CronInterface $cron
57+
* The cron service.
58+
* @param Drupal\Core\Site\Settings $settings
59+
* The site settings.
5660
*/
5761
public function __construct(QueueFactory $queue_factory, Connection $database, CronInterface $cron, Settings $settings) {
5862
$this->queueFactory = $queue_factory;

stream_wrapper_example/src/StreamWrapper/FileExampleSessionStreamWrapper.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ protected function getLocalPath($uri = NULL) {
265265
$uri = $this->uri;
266266
}
267267

268-
$path = str_replace('session://', '', $uri);
268+
$path = str_replace('session://', '', $uri);
269269
$path = trim($path, '/');
270270
return $path;
271271
}
@@ -657,7 +657,7 @@ public function rename($from_uri, $to_uri) {
657657
*/
658658
public function dirname($uri = NULL) {
659659
list($scheme, $target) = explode('://', $uri, 2);
660-
$target = $this->getTarget($uri);
660+
$target = $this->getTarget($uri);
661661
if (strpos($target, '/')) {
662662
$dirname = preg_replace('@/[^/]*$@', '', $target);
663663
}

stream_wrapper_example/src/StreamWrapper/SessionWrapper.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function __construct(RequestStack $request_stack) {
4242
/**
4343
* Get a fresh session object.
4444
*
45-
* @return SessionInterface
45+
* @return \Symfony\Component\HttpFoundation\Session\SessionInterface
4646
* A session object.
4747
*/
4848
protected function getSession() {
@@ -72,7 +72,7 @@ protected function getStore() {
7272
* The content of the whole session data store, to replace all of the
7373
* current data.
7474
*/
75-
protected function setStore($store) {
75+
protected function setStore(array $store) {
7676
$session = $this->getSession();
7777
$session->set(static::SESSION_BASE_ATTRIBUTE, $store);
7878
}

tour_example/src/Controller/TourExampleController.php

+1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ class TourExampleController {
2020
protected function getModuleName() {
2121
return 'tour_example';
2222
}
23+
2324
}

tour_example/tests/src/Functional/TourTestBase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ abstract class TourTestBase extends ExamplesBrowserTestBase {
3131
* $this->assertTourTips($tips);
3232
* @endcode
3333
*/
34-
public function assertTourTips($tips = array()) {
34+
public function assertTourTips(array $tips = array()) {
3535
$assert = $this->assertSession();
3636
// Get the rendered tips and their data-id and data-class attributes.
3737
if (empty($tips)) {

0 commit comments

Comments
 (0)