Skip to content

Instantly share code, notes, and snippets.

View DASPRiD's full-sized avatar

Ben Scholzen DASPRiD

View GitHub Profile
<?php
class CssCompiler
{
protected $gradients;
public function compile($input, $output, $gradients)
{
$this->gradients = $gradients;
$content = file_get_contents($input);
<?php
$config['routes'] = array(
'blog' => array(
'type' => 'Literal',
'options' => array(
'route' => '/blog',
'defaults' => array(
'controller' => 'blog-entry',
),
),