Skip to content

Commit

Permalink
remove finller
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinGab committed Aug 27, 2024
1 parent 2c103c3 commit c6f23dd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@
backupStaticProperties="false"
>
<testsuites>
<testsuite name="Finller Test Suite">
<testsuite name="Elegantly Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
<clover outputFile="build/logs/clover.xml"/>
<html outputDirectory="build/coverage" />
<text outputFile="build/coverage.txt" />
<clover outputFile="build/logs/clover.xml" />
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml"/>
<junit outputFile="build/report.junit.xml" />
</logging>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>
</phpunit>
2 changes: 1 addition & 1 deletion src/FileDownloaders/FileDownloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static function getTemporaryFile(string $url, ?TemporaryDirectory $tempor
{
$context = stream_context_create([
'http' => [
'header' => 'User-Agent: Finller laravel-media package',
'header' => 'User-Agent: Elegantly laravel-media package',
],
]);

Expand Down
3 changes: 2 additions & 1 deletion src/MediaCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ public function __construct(
public bool $public = false,
public ?string $disk = null,
public null|string|Closure $fallback = null,
) {}
) {
}
}

0 comments on commit c6f23dd

Please sign in to comment.