Skip to content

Commit df22e05

Browse files
committed
wip
1 parent d710c75 commit df22e05

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Algos/Algo.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,6 @@ public function getName(): string
6161
return Str::of($baseName)->beforeLast('Algo');
6262
}
6363

64-
public function __toString(): string
65-
{
66-
return $this->getName();
67-
}
68-
6964
public function toArray(): array
7065
{
7166
return [];
@@ -75,4 +70,9 @@ public function toJson($options = 0): string
7570
{
7671
return json_encode($this->toArray(), $options);
7772
}
73+
74+
public function __toString(): string
75+
{
76+
return $this->getName();
77+
}
7878
}

0 commit comments

Comments
 (0)