Kahlan\Jit\Parser::_normalizeImplements PHP Méthode

_normalizeImplements() protected méthode

Formats an implements string.
protected _normalizeImplements ( string $implements ) : array
$implements string The implements string.
Résultat array The implements array.
    protected function _normalizeImplements($implements)
    {
        if (!$implements) {
            return [];
        }
        return array_map([$this, '_normalizeClass'], array_map('trim', explode(',', $implements)));
    }