Skip to content

Commit

Permalink
[Console] Update to inherit and add licence
Browse files Browse the repository at this point in the history
  • Loading branch information
Simperfit committed Jul 8, 2019
1 parent ddaf1be commit ff0c141
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 26 deletions.
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Console\CommandLoader;

use Symfony\Component\Console\Command\Command;
Expand Down
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Console\CommandLoader;

use Psr\Container\ContainerInterface;
Expand Down
30 changes: 5 additions & 25 deletions src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php
Expand Up @@ -75,11 +75,7 @@ public function __construct($foreground = null, $background = null, array $optio
}

/**
* Sets style foreground color.
*
* @param string|null $color The color name
*
* @throws InvalidArgumentException When the color name isn't defined
* {@inheritdoc}
*/
public function setForeground($color = null)
{
Expand All @@ -97,11 +93,7 @@ public function setForeground($color = null)
}

/**
* Sets style background color.
*
* @param string|null $color The color name
*
* @throws InvalidArgumentException When the color name isn't defined
* {@inheritdoc}
*/
public function setBackground($color = null)
{
Expand All @@ -119,11 +111,7 @@ public function setBackground($color = null)
}

/**
* Sets some specific style option.
*
* @param string $option The option name
*
* @throws InvalidArgumentException When the option name isn't defined
* {@inheritdoc}
*/
public function setOption($option)
{
Expand All @@ -137,11 +125,7 @@ public function setOption($option)
}

/**
* Unsets some specific style option.
*
* @param string $option The option name
*
* @throws InvalidArgumentException When the option name isn't defined
* {@inheritdoc}
*/
public function unsetOption($option)
{
Expand All @@ -168,11 +152,7 @@ public function setOptions(array $options)
}

/**
* Applies the style to a given text.
*
* @param string $text The text to style
*
* @return string
* {@inheritdoc}
*/
public function apply($text)
{
Expand Down
Expand Up @@ -21,7 +21,7 @@ interface OutputFormatterStyleInterface
/**
* Sets style foreground color.
*
* @param string $color The color name
* @param string|null $color The color name
*/
public function setForeground($color = null);

Expand Down

0 comments on commit ff0c141

Please sign in to comment.