Skip to content

Commit 2d20a2e

Browse files
committed
fix code style
1 parent 44717c0 commit 2d20a2e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/Helpers.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
class Helpers
1414
{
1515
/**
16-
* Get model from class or string (by name).
17-
*
18-
* @return \Illuminate\Database\Eloquent\Model|class-string<\Illuminate\Database\Eloquent\Model>|null
19-
*/
16+
* Get model from class or string (by name).
17+
*
18+
* @return \Illuminate\Database\Eloquent\Model|class-string<\Illuminate\Database\Eloquent\Model>|null
19+
*/
2020
public static function modelFrom(string $value, bool $asClass = true, string $namespace = 'App\Models\\')
2121
{
2222
$value = implode(
@@ -55,7 +55,6 @@ public static function isModel(mixed $class): bool
5555
&& $classReflection->isSubclassOf('Illuminate\Database\Eloquent\Model');
5656
}
5757

58-
5958
/**
6059
* Get model instance from a mix-typed parameter.
6160
*
@@ -70,7 +69,7 @@ public static function isModel(mixed $class): bool
7069
public static function instanceFrom(mixed $key, string $class, array $columns = ['*'], array $with = [], bool $enforce = false)
7170
{
7271
if (! \class_exists($class) || ! static::isModel($class) || (\is_object($key) && ! static::isModel($key))) {
73-
throw (new ModelNotFoundException())->setModel($class);
72+
throw (new ModelNotFoundException)->setModel($class);
7473
}
7574

7675
if (static::isModel($key) && $enforce) {

0 commit comments

Comments
 (0)