Skip to content

Commit 8e9a6dd

Browse files
CS fixes
1 parent 2dfec53 commit 8e9a6dd

File tree

7 files changed

+18
-15
lines changed

7 files changed

+18
-15
lines changed

src/Illuminate/Foundation/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public function useAppPath($path)
333333
/**
334334
* Get the base path of the Laravel installation.
335335
*
336-
* @param string $path Optionally, a path to append to the base path
336+
* @param string $path
337337
* @return string
338338
*/
339339
public function basePath($path = '')

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ final class ArraySubset extends Constraint
162162
/**
163163
* Create a new array subset constraint instance.
164164
*
165-
* @param iterable $subset
166-
* @param bool $strict
165+
* @param iterable $subset
166+
* @param bool $strict
167167
* @return void
168168
*/
169169
public function __construct(iterable $subset, bool $strict = false)

tests/Auth/AuthAccessGateTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -760,9 +760,9 @@ public function testEveryAbilityCheckFailsIfNonePass()
760760
/**
761761
* @dataProvider hasAbilitiesTestDataProvider
762762
*
763-
* @param array $abilitiesToSet
764-
* @param array|string $abilitiesToCheck
765-
* @param bool $expectedHasValue
763+
* @param array $abilitiesToSet
764+
* @param array|string $abilitiesToCheck
765+
* @param bool $expectedHasValue
766766
*/
767767
public function testHasAbilities($abilitiesToSet, $abilitiesToCheck, $expectedHasValue)
768768
{

tests/Cache/CacheRepositoryTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ public function dataProviderTestGetSeconds()
223223

224224
/**
225225
* @dataProvider dataProviderTestGetSeconds
226-
* @param mixed $duration
226+
*
227+
* @param mixed $duration
227228
*/
228229
public function testGetSeconds($duration)
229230
{

tests/Redis/RedisManagerExtensionTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ class FakeRedisConnnector implements Connector
9898
/**
9999
* Create a new clustered Predis connection.
100100
*
101-
* @param array $config
102-
* @param array $options
101+
* @param array $config
102+
* @param array $options
103103
* @return \Illuminate\Contracts\Redis\Connection
104104
*/
105105
public function connect(array $config, array $options)
@@ -110,9 +110,9 @@ public function connect(array $config, array $options)
110110
/**
111111
* Create a new clustered Predis connection.
112112
*
113-
* @param array $config
114-
* @param array $clusterOptions
115-
* @param array $options
113+
* @param array $config
114+
* @param array $clusterOptions
115+
* @param array $options
116116
* @return \Illuminate\Contracts\Redis\Connection
117117
*/
118118
public function connectToCluster(array $config, array $clusterOptions, array $options)

tests/Support/SupportHelpersTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,9 @@ public function providesPregReplaceArrayData()
666666
];
667667
}
668668

669-
/** @dataProvider providesPregReplaceArrayData */
669+
/**
670+
* @dataProvider providesPregReplaceArrayData
671+
*/
670672
public function testPregReplaceArray($pattern, $replacements, $subject, $expectedOutput)
671673
{
672674
$this->assertSame(

tests/View/ViewBladeCompilerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ public function testRawTagsCanBeSetToLegacyValues()
9494
}
9595

9696
/**
97+
* @dataProvider appendViewPathDataProvider
98+
*
9799
* @param string $content
98100
* @param string $compiled
99-
*
100-
* @dataProvider appendViewPathDataProvider
101101
*/
102102
public function testIncludePathToTemplate($content, $compiled)
103103
{

0 commit comments

Comments
 (0)