Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Use FQN in DocBlocks
  • Loading branch information
claudiodekker committed Mar 4, 2021
commit c5eadc4d9de5a2597dc0c4b64f0d009e287c25a6
4 changes: 2 additions & 2 deletions src/Illuminate/Testing/Fluent/Assert.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ protected function prop(string $key = null)
* Instantiate a new "scope" at the path of the given key.
*
* @param string $key
* @param Closure $callback
* @param \Closure $callback
* @return $this
*/
protected function scope(string $key, Closure $callback): self
Expand Down Expand Up @@ -106,7 +106,7 @@ public static function fromArray(array $data): self
/**
* Create a new instance from a AssertableJsonString.
*
* @param AssertableJsonString $json
* @param \Illuminate\Testing\AssertableJsonString $json
* @return static
*/
public static function fromAssertableJsonString(AssertableJsonString $json): self
Expand Down
4 changes: 2 additions & 2 deletions src/Illuminate/Testing/Fluent/Concerns/Has.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ protected function count(string $key, int $length): self
*
* @param string $key
* @param null $value
* @param Closure|null $scope
* @param \Closure|null $scope
* @return $this
*/
public function has(string $key, $value = null, Closure $scope = null): self
Expand Down Expand Up @@ -151,7 +151,7 @@ abstract protected function prop(string $key = null);
* Instantiate a new "scope" at the path of the given key.
*
* @param string $key
* @param Closure $callback
* @param \Closure $callback
* @return $this
*/
abstract protected function scope(string $key, Closure $callback);
Expand Down
4 changes: 2 additions & 2 deletions src/Illuminate/Testing/Fluent/Concerns/Matching.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait Matching
* Asserts that the property matches the expected value.
*
* @param string $key
* @param mixed|callable $expected
* @param mixed|\Closure $expected
* @return $this
*/
public function where(string $key, $expected): self
Expand Down Expand Up @@ -94,7 +94,7 @@ abstract protected function dotPath(string $key): string;
*
* @param string $key
* @param null $value
* @param Closure|null $scope
* @param \Closure|null $scope
* @return $this
*/
abstract public function has(string $key, $value = null, Closure $scope = null);
Expand Down