Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- /*
- * This file is part of the Fxp Composer Asset Plugin package.
- *
- * (c) François Pluchino <francois.pluchino@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
- namespace Fxp\Composer\AssetPlugin\Exception;
-
- /**
- * The Invalid Create Asset Repository Exception.
- *
- * @author François Pluchino <francois.pluchino@gmail.com>
- */
- class InvalidCreateRepositoryException extends \Exception
- {
- /**
- * @var array
- */
- protected $data = array();
-
- /**
- * Set the data of asset package config defined by the registry.
- *
- * @param array $data The data
- *
- * @return self
- */
- public function setData(array $data)
- {
- $this->data = $data;
-
- return $this;
- }
-
- /**
- * Get the data of asset package config defined by the registry.
- *
- * @return array
- */
- public function getData()
- {
- return $this->data;
- }
- }
|