-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ac4f0e
commit d10bd7c
Showing
6 changed files
with
130 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Bake\Test\App\Model\Enum; | ||
|
||
use Cake\Database\Type\EnumLabelInterface; | ||
use Cake\Utility\Inflector; | ||
|
||
/** | ||
* FooBar Enum | ||
*/ | ||
enum FooBar: string implements EnumLabelInterface | ||
{ | ||
/** | ||
* @return string | ||
*/ | ||
public function label(): string | ||
{ | ||
return Inflector::humanize(mb_strtolower($this->name)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Bake\Test\App\Model\Enum; | ||
|
||
use Cake\Database\Type\EnumLabelInterface; | ||
use Cake\Utility\Inflector; | ||
|
||
/** | ||
* FooBar Enum | ||
*/ | ||
enum FooBar: int implements EnumLabelInterface | ||
{ | ||
/** | ||
* @return string | ||
*/ | ||
public function label(): string | ||
{ | ||
return Inflector::humanize(mb_strtolower($this->name)); | ||
} | ||
} |