PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
packages
/
revision
/
src
<?php namespace Botble\Revision; class FieldFormatter { /** * Format the value according to the provided formats. * * @param string $key * @param string $value * @param array $formats * @return string formatted value */ public static function format($key, $value, array $formats) { foreach ($formats as $pkey => $format) { $parts = explode(':', $format); if (count($parts) === 1) { continue; } if ($pkey == $key) { $method = array_shift($parts); if (method_exists(get_class(), $method)) { return self::$method($value, implode(':', $parts)); } break; } } return $value; } }
[-] Revision.php
[edit]
[-] FieldFormatter.php
[edit]
[+]
..
[-] RevisionableTrait.php
[edit]
[+]
Providers