Skip to content

Commit

Permalink
[2.x] New version
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkGhostHunter committed Mar 6, 2024
2 parents 28f6d4d + 7942fd3 commit 7fb08a4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/finder": "7.*",
"symfony/finder": "6.*|7.*",
"illuminate/config": "10.*|11.*",
"illuminate/console": "10.*|11.*",
"illuminate/contracts": "10.*|11.*",
Expand Down
16 changes: 9 additions & 7 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache">
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
<exclude>
<file>src/Opcache.php</file>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
<html outputDirectory="build/coverage"/>
Expand All @@ -18,4 +12,12 @@
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>src/</directory>
</include>
<exclude>
<file>src/Opcache.php</file>
</exclude>
</source>
</phpunit>
6 changes: 0 additions & 6 deletions src/Condition.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ class Condition
{
/**
* Create a new Condition instance.
*
* @param \Closure(\Illuminate\Http\Request, \Symfony\Component\HttpFoundation\Response, array):bool $callback
*/
public function __construct(protected ApplicationContract $app, protected Closure $callback)
{
Expand All @@ -22,8 +20,6 @@ public function __construct(protected ApplicationContract $app, protected Closur

/**
* Use a callback for the condition.
*
* @param \Closure(\Illuminate\Http\Request, \Symfony\Component\HttpFoundation\Response, array):bool $callback
*/
public function use(Closure $callback): void
{
Expand All @@ -46,8 +42,6 @@ public function shouldGenerate(Request $request, Response $response): bool
* Returns a condition callback based on requests count.
*
* Ensure your 'condition' array contains a 'store', 'key' and 'hits' keys.
*
* @return \Closure(array{int, mixed}, \Illuminate\Contracts\Cache\Factory):bool
*/
public static function countCondition(): Closure
{
Expand Down
1 change: 0 additions & 1 deletion src/Lister/Pipes/NormalizeList.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class NormalizeList
*/
public function handle(Listing $listing, Closure $next): Listing
{
// @phpstan-ignore-next-line
$listing->files = $listing->files->keys();

return $next($listing);
Expand Down
4 changes: 2 additions & 2 deletions src/Preloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(
*
* @param (\Closure(\Symfony\Component\Finder\Finder):void)|string ...$exclude
*/
public function exclude(string ...$exclude): void
public function exclude(Closure|string ...$exclude): void
{
$this->exclude = $this->normalizeListing($exclude);
}
Expand All @@ -55,7 +55,7 @@ public function exclude(string ...$exclude): void
*
* @param (\Closure(\Symfony\Component\Finder\Finder):void)|string ...$append
*/
public function append(Closure | string ...$append): void
public function append(Closure|string ...$append): void
{
$this->append = $this->normalizeListing($append);
}
Expand Down

0 comments on commit 7fb08a4

Please sign in to comment.