File "CompilesClasses.php"
                                Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/laravel/framework/src/Illuminate/Auth/Passwords/CompilesClasses.php
                File size: 446 bytes
                MIME-type: text/x-php
                Charset: utf-8
            
<?php
namespace Illuminate\View\Compilers\Concerns;
trait CompilesClasses
{
    /**
     * Compile the conditional class statement into valid PHP.
     *
     * @param  string  $expression
     * @return string
     */
    protected function compileClass($expression)
    {
        $expression = is_null($expression) ? '([])' : $expression;
        return "class=\"<?php echo \Illuminate\Support\Arr::toCssClasses{$expression}; ?>\"";
    }
}