ekandreas / bladerunner

WordPress plugin for Laravel Blade templating DEPRECATED
http://bladerunner.elseif.se
12 stars 1 forks source link

No such file or directory #80

Closed MaximVanhove closed 3 years ago

MaximVanhove commented 5 years ago

I get warnings when WP_DEBUG is set to true.

<b>Warning</b>: unlink(/site/storage/views/cache/011c6fea2e3983d5b59d52be3c8f6f35b04a139e.php): No such file or directory in <b>/site/public/mu-plugins/bladerunner/globals/setup.php</b> on line <b>55</b><br />

This could by fixed by using a helper function unlink_if_exists

if (!function_exists('unlink_if_exists')) {
    function unlink_if_exists($file)
    {
        return is_file($file) && @unlink($file);
    }
}
array_map('unlink_if_exists',
    glob(\Bladerunner\Config::repo('view.compiled') . '/*'));
ekandreas commented 3 years ago

Hi! This is a deprecated package. Please use https://github.com/EFTEC/BladeOne instead!