@pixelbart
I had similar problem – filemtime trying to get filepath with full url on it.
I solved it by changing in functions.php:
Before:
wp_enqueue_style(‘style.less’, get_template_directory_uri() . ‘/style.less’);
After:
wp_enqueue_style(‘style.less’, ‘themes/cssw/style.less’);