1
0
Fork 0
mirror of https://github.com/archtechx/enums.git synced 2025-12-12 12:54:04 +00:00
This commit is contained in:
Samuel Štancl 2022-02-20 20:58:57 +01:00
parent f9fe9e5cab
commit 41b423da38
11 changed files with 146 additions and 91 deletions

View file

@ -1,27 +1,75 @@
# REPLACE
# Enums
Simple and flexible package template. Supports Laravel 8 and 9.
A collection\* of enum helpers for PHP.
# Usage
\* Currently there's only one helper — [`InvokableCases`](#invokablecases) — but the goal of the package is to provide general purpose enum helpers.
- Replace all occurances of `REPLACE` (case sensitive) with the name of the package namespace. E.g. the `Foo` in `ArchTech\Foo`.
- Also do this for file names, e.g. `REPLACEServiceProvider.php`.
- Replace all occurances of `replace` with the name of the package on composer, e.g. the `bar` in `archtechx/bar`.
- If MySQL is not needed, remove `docker-compose.yml`, remove the line that runs docker from `./check`, and remove it from the `.github/ci.yml` file.
- If SQLite is wanted, change `DB_CONNECTION` in `phpunit.xml` to `sqlite`, and `DB_DATABASE` to `:memory:`.
---
You can read more about the idea on [Twitter](https://twitter.com/archtechx/status/1495158228757270528). I originally wanted to include that helper in [`archtechx/helpers`](https://github.com/archtechx/helpers), but it makes more sense to make this a separate dependency and use it *inside* the other package.
## Installation
Laravel 8 or 9 are required. PHP 8.1+ is required.
```sh
composer require archtechx/replace
composer require archtechx/enums
```
## Usage
### InvokableCases
This helper lets you get the value of a backed enum by "invoking it" — either statically (`MyEnum::FOO()` instead of `MyEnum::FOO`), or as an instance (`$enum()`).
That way, you can use enums as array keys:
```php
// ...
'statuses' => [
TaskStatus::INCOMPLETE() => ['some configuration'],
TaskStatus::COMPLETED() => ['some configuration'],
],
```
Or just the underlying primitives for any other use cases:
```php
public function updateStatus(int $status): void;
$task->updateStatus(TaskStatus::COMPLETED());
```
Without [having to append](https://twitter.com/archtechx/status/1495158237137494019) `->value` to everything.
This approach also has *decent* IDE support. You get autosuggestions while typing, and then you just append `()`:
```php
MyEnum::FOO; // => MyEnum instance
MyEnum::FOO(); // => 1
```
#### Apply the trait on your enum
```php
use ArchTech\Enums\InvokableCases;
enum TaskStatus: int
{
use InvokableCases;
case INCOMPLETE = 0;
case COMPLETED = 1;
case CANCELED = 2;
}
```
#### Use static calls to get the primitive value
```php
TaskStatus::INCOMPLETE(); // 0
TaskStatus::COMPLETED(); // 1
TaskStatus::CANCELED(); // 2
```
#### Invoke instances to get the primitive value
```php
public function updateStatus(TaskStatus $status)
{
$this->record->setStatus($status());
}
```
## Development