update methods api

This commit is contained in:
openlegends 2024-03-18 15:05:34 +02:00
parent 3c2a908334
commit 55053ea1f3
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ class Goblin extends \OpenLegends\Engine\Abstract\Card
{ {
public function __construct() public function __construct()
{ {
$this->setTitle( $this->setName(
_('Goblin') _('Goblin')
); );

View File

@ -8,7 +8,7 @@ class Mouse extends \OpenLegends\Engine\Abstract\Card
{ {
public function __construct() public function __construct()
{ {
$this->setTitle( $this->setName(
_('Mouse') _('Mouse')
); );

View File

@ -24,7 +24,7 @@ class Rat extends \OpenLegends\Engine\Abstract\Card
new \OpenLegends\Asset\Test\Card\Ability\Damage() new \OpenLegends\Asset\Test\Card\Ability\Damage()
); );
$this->setTitle( $this->setName(
_('Rat') _('Rat')
); );