Skip to content

Commit 637c38e

Browse files
naimsolonggithub-actions[bot]
authored andcommitted
Fix styling
1 parent 1e7fd68 commit 637c38e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/Dto/Source.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function __construct(
1515

1616
public static function fromArray(array $data): self
1717
{
18-
if (!is_subclass_of($data['model'], Model::class)) {
18+
if (! is_subclass_of($data['model'], Model::class)) {
1919
throw new Exception('The provided model, parent must be an instance of Illuminate\Database\Eloquent\Model');
2020
}
2121

src/Extract.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace NaimSolong\DataExtractor;
44

5-
use Illuminate\Database\Eloquent\ModelNotFoundException;
65
use NaimSolong\DataExtractor\Builder\ExtractBuilder;
76

87
class Extract

src/InstructionsResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function set(int|string $value): self
5353
return $instruction->name === $value;
5454
});
5555

56-
if(count($filteredInstructions) > 0) {
56+
if (count($filteredInstructions) > 0) {
5757
$this->instruction = $filteredInstructions[0];
5858

5959
return $this;

0 commit comments

Comments
 (0)