Skip to content

Commit 0879b46

Browse files
romalytvynenkogithub-actions[bot]
authored andcommitted
Fix styling
1 parent e53b123 commit 0879b46

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/Infer/Definition/ClassDefinition.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
use Dedoc\Scramble\Support\Type\Type;
2525
use Dedoc\Scramble\Support\Type\TypeWalker;
2626
use Dedoc\Scramble\Support\Type\UnknownType;
27-
use Illuminate\Database\Eloquent\Model;
2827
use Illuminate\Support\Collection;
2928
use Illuminate\Support\Str;
3029
use PhpParser\ErrorHandler\Throwing;

tests/Infer/Scope/IndexTest.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ class BazUse_IndexTest extends BazUseParent_IndexTest {}
319319
it('handles class definition logic when class is alias and mixin', function () {
320320
Scramble::infer()->configure()->buildDefinitionsUsingReflectionFor([
321321
'TheAliasForAliased_IndexTest',
322-
Aliased_IndexTest::class
322+
Aliased_IndexTest::class,
323323
]);
324324

325325
$def = $this->index
@@ -333,9 +333,6 @@ class BazUse_IndexTest extends BazUseParent_IndexTest {}
333333
*/
334334
class Aliased_IndexTest
335335
{
336-
public function count()
337-
{
338-
339-
}
336+
public function count() {}
340337
}
341338
class_alias(Aliased_IndexTest::class, 'TheAliasForAliased_IndexTest');

0 commit comments

Comments
 (0)