for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\Plates\Template;
use LogicException;
/**
* A collection of template folders.
*/
class Folders
{
* Array of template folders.
* @var array
protected $folders = array();
* Add a template folder.
* @param string $name
* @param string $path
* @param boolean $fallback
* @return Folders
public function add($name, $path, $fallback = false)
if ($this->exists($name)) {
throw new LogicException('The template folder "' . $name . '" is already being used.');
}
$this->folders[$name] = new Folder($name, $path, $fallback);
return $this;
* Remove a template folder.
public function remove($name)
if (!$this->exists($name)) {
throw new LogicException('The template folder "' . $name . '" was not found.');
unset($this->folders[$name]);
* Get a template folder.
* @return Folder
public function get($name)
return $this->folders[$name];
* Check if a template folder exists.
* @return boolean
public function exists($name)
return isset($this->folders[$name]);