mirror of
https://github.com/pierre42100/comunic
synced 2025-06-23 02:25:18 +00:00
First commit
This commit is contained in:
22
developer/vendor/league/climate/src/Settings/Art.php
vendored
Normal file
22
developer/vendor/league/climate/src/Settings/Art.php
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace League\CLImate\Settings;
|
||||
|
||||
class Art implements SettingsInterface
|
||||
{
|
||||
/**
|
||||
* An array of valid art directories
|
||||
* @var array[] $dirs
|
||||
*/
|
||||
public $dirs = [];
|
||||
|
||||
/**
|
||||
* Add directories of art
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$this->dirs = array_merge($this->dirs, func_get_args());
|
||||
$this->dirs = array_filter($this->dirs);
|
||||
$this->dirs = array_values($this->dirs);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user