yakiv-khorunzhyi/value-type

Scalar type as object.

dev-master 2020-08-06 14:27 UTC

This package is auto-updated.

Last update: 2024-06-06 22:58:03 UTC


README

Installation

Install the latest version with:

$ composer require yakiv-khorunzhyi/scalar-type

Examples

$address = new Core\ScalarType('Country,city,street', Core\Types::STRING);

$address->setFormatRule(function ($val) {
    return explode(',', $val);
});

var_dump($address->getFormattedValue());
var_dump($address->getValue());
var_dump($address->getType());

/*
1) array(3) {
  [0]=>
  string(7) "Country"
  [1]=>
  string(4) "city"
  [2]=>
  string(6) "street"
}

2) string(19) "Country,city,street"

3) string(6) "string"
*/

License

MIT license.