File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/friendsofphp/php-cs-fixer/src/Config.php
<?php
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer;
use PhpCsFixer\Fixer\FixerInterface;
/**
* @author Fabien Potencier <fabien@symfony.com>
* @author Katsuhiro Ogawa <ko.fivestar@gmail.com>
* @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
*/
class Config implements ConfigInterface
{
private $cacheFile = '.php_cs.cache';
private $customFixers = [];
private $finder;
private $format = 'txt';
private $hideProgress = false;
private $indent = ' ';
private $isRiskyAllowed = false;
private $lineEnding = "\n";
private $name;
private $phpExecutable;
private $rules = ['@PSR2' => true];
private $usingCache = true;
public function __construct($name = 'default')
{
$this->name = $name;
}
/**
* @return static
*/
public static function create()
{
return new static();
}
/**
* {@inheritdoc}
*/
public function getCacheFile()
{
return $this->cacheFile;
}
/**
* {@inheritdoc}
*/
public function getCustomFixers()
{
return $this->customFixers;
}
/**
* @return Finder
*/
public function getFinder()
{
if (null === $this->finder) {
$this->finder = new Finder();
}
return $this->finder;
}
/**
* {@inheritdoc}
*/
public function getFormat()
{
return $this->format;
}
/**
* {@inheritdoc}
*/
public function getHideProgress()
{
return $this->hideProgress;
}
/**
* {@inheritdoc}
*/
public function getIndent()
{
return $this->indent;
}
/**
* {@inheritdoc}
*/
public function getLineEnding()
{
return $this->lineEnding;
}
/**
* {@inheritdoc}
*/
public function getName()
{
return $this->name;
}
/**
* {@inheritdoc}
*/
public function getPhpExecutable()
{
return $this->phpExecutable;
}
/**
* {@inheritdoc}
*/
public function getRiskyAllowed()
{
return $this->isRiskyAllowed;
}
/**
* {@inheritdoc}
*/
public function getRules()
{
return $this->rules;
}
/**
* {@inheritdoc}
*/
public function getUsingCache()
{
return $this->usingCache;
}
/**
* {@inheritdoc}
*/
public function registerCustomFixers($fixers)
{
if (false === \is_array($fixers) && false === $fixers instanceof \Traversable) {
throw new \InvalidArgumentException(sprintf(
'Argument must be an array or a Traversable, got "%s".',
\is_object($fixers) ? \get_class($fixers) : \gettype($fixers)
));
}
foreach ($fixers as $fixer) {
$this->addCustomFixer($fixer);
}
return $this;
}
/**
* {@inheritdoc}
*/
public function setCacheFile($cacheFile)
{
$this->cacheFile = $cacheFile;
return $this;
}
/**
* {@inheritdoc}
*/
public function setFinder($finder)
{
if (false === \is_array($finder) && false === $finder instanceof \Traversable) {
throw new \InvalidArgumentException(sprintf(
'Argument must be an array or a Traversable, got "%s".',
\is_object($finder) ? \get_class($finder) : \gettype($finder)
));
}
$this->finder = $finder;
return $this;
}
/**
* {@inheritdoc}
*/
public function setFormat($format)
{
$this->format = $format;
return $this;
}
/**
* {@inheritdoc}
*/
public function setHideProgress($hideProgress)
{
$this->hideProgress = $hideProgress;
return $this;
}
/**
* {@inheritdoc}
*/
public function setIndent($indent)
{
$this->indent = $indent;
return $this;
}
/**
* {@inheritdoc}
*/
public function setLineEnding($lineEnding)
{
$this->lineEnding = $lineEnding;
return $this;
}
/**
* {@inheritdoc}
*/
public function setPhpExecutable($phpExecutable)
{
$this->phpExecutable = $phpExecutable;
return $this;
}
/**
* {@inheritdoc}
*/
public function setRiskyAllowed($isRiskyAllowed)
{
$this->isRiskyAllowed = $isRiskyAllowed;
return $this;
}
/**
* {@inheritdoc}
*/
public function setRules(array $rules)
{
$this->rules = $rules;
return $this;
}
/**
* {@inheritdoc}
*/
public function setUsingCache($usingCache)
{
$this->usingCache = $usingCache;
return $this;
}
private function addCustomFixer(FixerInterface $fixer)
{
$this->customFixers[] = $fixer;
}
}