Skip to content

Commit

Permalink
LessphpFilter: Add setLoadPaths method
Browse files Browse the repository at this point in the history
  • Loading branch information
ShonM committed Mar 25, 2013
1 parent 89e9837 commit b540e7f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Assetic/Filter/LessphpFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ public function addLoadPath($path)
$this->loadPaths[] = $path;
}

/**
* Sets load paths used by lessphp
*
* @param array $loadPaths Load paths
*/
public function setLoadPaths($loadPaths = array())
{
$this->loadPaths = $loadPaths;

return $this;
}

public function setPresets(array $presets)
{
$this->presets = $presets;
Expand Down

0 comments on commit b540e7f

Please sign in to comment.