Skip to content

Commit 56c0a1a

Browse files
committed
fix CS
1 parent 97631de commit 56c0a1a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/Feature/DeepfaceTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
use Astrotomic\DeepFace\Enums\Race;
77
use PHPUnit\Framework\Assert;
88

9-
describe('analyze', function ():void {
10-
it('analyzes: img1', function ():void {
9+
describe('analyze', function (): void {
10+
it('analyzes: img1', function (): void {
1111
$img = $this->image('img1.jpg');
1212
$results = $this->deepface()->analyze($img);
1313

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ abstract class TestCase extends BaseTestCase
99
{
1010
protected function deepface(): DeepFace
1111
{
12-
return new DeepFace();
12+
return new DeepFace;
1313
}
1414

1515
protected function image(string $img): string
1616
{
17-
return realpath(__DIR__ . DIRECTORY_SEPARATOR . 'Fixtures'. DIRECTORY_SEPARATOR . 'images' . DIRECTORY_SEPARATOR . $img);
17+
return realpath(__DIR__.DIRECTORY_SEPARATOR.'Fixtures'.DIRECTORY_SEPARATOR.'images'.DIRECTORY_SEPARATOR.$img);
1818
}
1919
}

0 commit comments

Comments
 (0)