Kahlan\Jit\Parser::_normalizeImplements PHP Method

_normalizeImplements() protected method

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