Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Jul 17, 2024
1 parent 9c38f07 commit 247aec5
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions monorepo/stubs/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,35 @@

/**
* @template T
* @param T $value
* @param callable(?T): mixed $callback
*
* @param T $value
* @param callable(?T): mixed $callback
* @return T
*/
function tap($value, $callback = null) {}
function tap($value, $callback = null)
{
}

class HigherOrderTapProxy
{
/**
* @template T
* @param T $target
*
* @param T $target
*/
public function __construct($target) {}
public function __construct($target)
{
}

/**
* @template T
* @param T $target
* @param string $method
* @param array $parameters
*
* @param T $target
* @param string $method
* @param array $parameters
* @return T
*/
public function __call($method, $parameters) {}
public function __call($method, $parameters)
{
}
}

0 comments on commit 247aec5

Please sign in to comment.