Skip to content

Commit 2dfec53

Browse files
CS fixes
1 parent 9bc2bf2 commit 2dfec53

File tree

13 files changed

+43
-43
lines changed

13 files changed

+43
-43
lines changed

src/Illuminate/Cache/Repository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ protected function event($event)
550550
/**
551551
* Get the event dispatcher instance.
552552
*
553-
* @return \Illuminate\Contracts\Events\Dispatcher
553+
* @return \Illuminate\Contracts\Events\Dispatcher
554554
*/
555555
public function getEventDispatcher()
556556
{

src/Illuminate/Contracts/Foundation/Application.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@ public function basePath($path = '');
2525
/**
2626
* Get the path to the bootstrap directory.
2727
*
28-
* @param string $path Optionally, a path to append to the bootstrap path
28+
* @param string $path
2929
* @return string
3030
*/
3131
public function bootstrapPath($path = '');
3232

3333
/**
3434
* Get the path to the application configuration files.
3535
*
36-
* @param string $path Optionally, a path to append to the config path
36+
* @param string $path
3737
* @return string
3838
*/
3939
public function configPath($path = '');
4040

4141
/**
4242
* Get the path to the database directory.
4343
*
44-
* @param string $path Optionally, a path to append to the database path
44+
* @param string $path
4545
* @return string
4646
*/
4747
public function databasePath($path = '');

src/Illuminate/Database/Eloquent/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ public function keys()
463463
/**
464464
* Zip the collection together with one or more arrays.
465465
*
466-
* @param mixed ...$items
466+
* @param mixed ...$items
467467
* @return \Illuminate\Support\Collection
468468
*/
469469
public function zip($items)

src/Illuminate/Foundation/Application.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ public function basePath($path = '')
344344
/**
345345
* Get the path to the bootstrap directory.
346346
*
347-
* @param string $path Optionally, a path to append to the bootstrap path
347+
* @param string $path
348348
* @return string
349349
*/
350350
public function bootstrapPath($path = '')
@@ -355,7 +355,7 @@ public function bootstrapPath($path = '')
355355
/**
356356
* Get the path to the application configuration files.
357357
*
358-
* @param string $path Optionally, a path to append to the config path
358+
* @param string $path
359359
* @return string
360360
*/
361361
public function configPath($path = '')
@@ -366,7 +366,7 @@ public function configPath($path = '')
366366
/**
367367
* Get the path to the database directory.
368368
*
369-
* @param string $path Optionally, a path to append to the database path
369+
* @param string $path
370370
* @return string
371371
*/
372372
public function databasePath($path = '')

src/Illuminate/Foundation/Testing/Constraints/ArraySubset.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ final class ArraySubset extends Constraint
2727
/**
2828
* Create a new array subset constraint instance.
2929
*
30-
* @param iterable $subset
31-
* @param bool $strict
30+
* @param iterable $subset
31+
* @param bool $strict
3232
* @return void
3333
*/
3434
public function __construct(iterable $subset, bool $strict = false)

src/Illuminate/Pagination/LengthAwarePaginator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class LengthAwarePaginator extends AbstractPaginator implements Arrayable, Array
3434
* @param int $total
3535
* @param int $perPage
3636
* @param int|null $currentPage
37-
* @param array $options (path, query, fragment, pageName)
37+
* @param array $options (path, query, fragment, pageName)
3838
* @return void
3939
*/
4040
public function __construct($items, $total, $perPage, $currentPage = null, array $options = [])

src/Illuminate/Pagination/Paginator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Paginator extends AbstractPaginator implements Arrayable, ArrayAccess, Cou
2626
* @param mixed $items
2727
* @param int $perPage
2828
* @param int|null $currentPage
29-
* @param array $options (path, query, fragment, pageName)
29+
* @param array $options (path, query, fragment, pageName)
3030
* @return void
3131
*/
3232
public function __construct($items, $perPage, $currentPage = null, array $options = [])

src/Illuminate/Queue/SerializableClosure.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class SerializableClosure extends OpisSerializableClosure
1111
/**
1212
* Transform the use variables before serialization.
1313
*
14-
* @param array $data The Closure's use variables
14+
* @param array $data
1515
* @return array
1616
*/
1717
protected function transformUseVariables($data)
@@ -26,7 +26,7 @@ protected function transformUseVariables($data)
2626
/**
2727
* Resolve the use variables after unserialization.
2828
*
29-
* @param array $data The Closure's transformed use variables
29+
* @param array $data
3030
* @return array
3131
*/
3232
protected function resolveUseVariables($data)

src/Illuminate/Redis/Connections/PhpRedisConnection.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ public function zunionstore($output, $keys, $options = [])
306306
/**
307307
* Scans the all keys based on options.
308308
*
309-
* @param mixed $cursor
310-
* @param array $options
309+
* @param mixed $cursor
310+
* @param array $options
311311
* @return mixed
312312
*/
313313
public function scan($cursor, $options = [])
@@ -323,9 +323,9 @@ public function scan($cursor, $options = [])
323323
/**
324324
* Scans the given set for all values based on options.
325325
*
326-
* @param string $key
327-
* @param mixed $cursor
328-
* @param array $options
326+
* @param string $key
327+
* @param mixed $cursor
328+
* @param array $options
329329
* @return mixed
330330
*/
331331
public function zscan($key, $cursor, $options = [])
@@ -341,9 +341,9 @@ public function zscan($key, $cursor, $options = [])
341341
/**
342342
* Scans the given set for all values based on options.
343343
*
344-
* @param string $key
345-
* @param mixed $cursor
346-
* @param array $options
344+
* @param string $key
345+
* @param mixed $cursor
346+
* @param array $options
347347
* @return mixed
348348
*/
349349
public function hscan($key, $cursor, $options = [])
@@ -359,9 +359,9 @@ public function hscan($key, $cursor, $options = [])
359359
/**
360360
* Scans the given set for all values based on options.
361361
*
362-
* @param string $key
363-
* @param mixed $cursor
364-
* @param array $options
362+
* @param string $key
363+
* @param mixed $cursor
364+
* @param array $options
365365
* @return mixed
366366
*/
367367
public function sscan($key, $cursor, $options = [])

src/Illuminate/Support/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ public function values()
11971197
* e.g. new Collection([1, 2, 3])->zip([4, 5, 6]);
11981198
* => [[1, 4], [2, 5], [3, 6]]
11991199
*
1200-
* @param mixed ...$items
1200+
* @param mixed ...$items
12011201
* @return static
12021202
*/
12031203
public function zip($items)

0 commit comments

Comments
 (0)