Skip to content

Commit c5eadc4

Browse files
committed
Use FQN in DocBlocks
1 parent 91bd93f commit c5eadc4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Illuminate/Testing/Fluent/Assert.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected function prop(string $key = null)
7575
* Instantiate a new "scope" at the path of the given key.
7676
*
7777
* @param string $key
78-
* @param Closure $callback
78+
* @param \Closure $callback
7979
* @return $this
8080
*/
8181
protected function scope(string $key, Closure $callback): self
@@ -106,7 +106,7 @@ public static function fromArray(array $data): self
106106
/**
107107
* Create a new instance from a AssertableJsonString.
108108
*
109-
* @param AssertableJsonString $json
109+
* @param \Illuminate\Testing\AssertableJsonString $json
110110
* @return static
111111
*/
112112
public static function fromAssertableJsonString(AssertableJsonString $json): self

src/Illuminate/Testing/Fluent/Concerns/Has.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function count(string $key, int $length): self
3131
*
3232
* @param string $key
3333
* @param null $value
34-
* @param Closure|null $scope
34+
* @param \Closure|null $scope
3535
* @return $this
3636
*/
3737
public function has(string $key, $value = null, Closure $scope = null): self
@@ -151,7 +151,7 @@ abstract protected function prop(string $key = null);
151151
* Instantiate a new "scope" at the path of the given key.
152152
*
153153
* @param string $key
154-
* @param Closure $callback
154+
* @param \Closure $callback
155155
* @return $this
156156
*/
157157
abstract protected function scope(string $key, Closure $callback);

src/Illuminate/Testing/Fluent/Concerns/Matching.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ trait Matching
1313
* Asserts that the property matches the expected value.
1414
*
1515
* @param string $key
16-
* @param mixed|callable $expected
16+
* @param mixed|\Closure $expected
1717
* @return $this
1818
*/
1919
public function where(string $key, $expected): self
@@ -94,7 +94,7 @@ abstract protected function dotPath(string $key): string;
9494
*
9595
* @param string $key
9696
* @param null $value
97-
* @param Closure|null $scope
97+
* @param \Closure|null $scope
9898
* @return $this
9999
*/
100100
abstract public function has(string $key, $value = null, Closure $scope = null);

0 commit comments

Comments
 (0)