GithubHelp home page GithubHelp logo

henzeb / enumhancer Goto Github PK

View Code? Open in Web Editor NEW
45.0 2.0 3.0 372 KB

Your Swiss Army knife for PHP 8.1+ native enums

License: GNU Affero General Public License v3.0

PHP 100.00%
backed basic enum enumeration enums laravel native php

enumhancer's People

Contributors

henzeb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

enumhancer's Issues

Laravel casting for UnitEnum

Laravel supports casting for BackedEnum out of the box, but does not support UnitEnums.

idea is to add casting for UnitEnums by using CastsAttributes interface.

This is currently being blocked by laravel/framework#42648. Laravel just checks if the enum exists, not if it is a BackedEnum.

Request: functions to values or names from enum.

The following migration rule does not work because cases() returns an array of enum objects rather than an array of strings:

    $table->enum('status', TransactionStatus::cases());

names() and values() functions would be nice in this case, they would return an array with strings.

Example:

    public static function names(): array
    {
        return array_column(self::cases(), 'name');
    }

->equals regression in 1.7

Comparisons with strings seem to have broken in some way between 1.6 and 1.7.

$code = 'FR020100';
$is_false = TaxCode::SHIPPING->equals($code);
$is_true = TaxCode::SHIPPING->value === $code;

<?php

namespace Drupal\hc_commerce_avatax\Enum;

use Henzeb\Enumhancer\Concerns\Comparison;

/**
 * Provides enums that represent avatax tax codes.
 */
enum TaxCode: string {

  use Comparison;

  case DEFAULT = 'P0000000';

  case LUMBER = 'PA3000400';

  case SHIPPING = 'FR020100';

}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.