1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-06-28 20:55:09 +03:00
kangana/application/classes/Task/Style.php

16 lines
372 B
PHP

<?php defined('SYSPATH') OR die('No direct script access.');
/**
* This is an automated task to compile and minify SCSS.
* It has no configurable options.
* @category Helpers
* @author Oreolek
* @license AGPL
**/
class Task_Style extends Minion_Task
{
protected function _execute()
{
system('scss '.APPPATH.'scss/main.scss ./public/style.css');
}
}