���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/st2/vendor/league/plates/src/Template/ |
<?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. * @param string $name * @return Folders */ public function remove($name) { if (!$this->exists($name)) { throw new LogicException('The template folder "' . $name . '" was not found.'); } unset($this->folders[$name]); return $this; } /** * Get a template folder. * @param string $name * @return Folder */ public function get($name) { if (!$this->exists($name)) { throw new LogicException('The template folder "' . $name . '" was not found.'); } return $this->folders[$name]; } /** * Check if a template folder exists. * @param string $name * @return boolean */ public function exists($name) { return isset($this->folders[$name]); } }