serve() public method

Compile requested scss and serve css. Outputs HTTP response.
public serve ( string $salt = '' )
$salt string Prefix a string to the filename for creating the cache name hash
コード例 #1
0
 public function serve($resetSalt = false)
 {
     if ($resetSalt) {
         $this->salt = time();
     }
     $this->server->serve($this->salt);
 }