Skip to content

Commit

Permalink
Merge pull request #77 from joomla-framework/deprecate-cli
Browse files Browse the repository at this point in the history
Deprecate the CLI classes in favor of the Console package
  • Loading branch information
wilsonge committed Sep 12, 2017
2 parents e0e4881 + 40e9332 commit 2627d1b
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 9 deletions.
3 changes: 2 additions & 1 deletion src/AbstractCliApplication.php
Expand Up @@ -14,7 +14,8 @@
/**
* Base class for a Joomla! command line application.
*
* @since 1.0
* @since 1.0
* @deprecated 2.0 Use the `joomla/console` package instead
*/
abstract class AbstractCliApplication extends AbstractApplication
{
Expand Down
3 changes: 2 additions & 1 deletion src/Cli/CliInput.php
Expand Up @@ -11,7 +11,8 @@
/**
* Class CliInput
*
* @since 1.6.0
* @since 1.6.0
* @deprecated 2.0 Use the `joomla/console` package instead
*/
class CliInput
{
Expand Down
3 changes: 2 additions & 1 deletion src/Cli/CliOutput.php
Expand Up @@ -13,7 +13,8 @@
/**
* Class CliOutput
*
* @since 1.0
* @since 1.0
* @deprecated 2.0 Use the `joomla/console` package instead
*/
abstract class CliOutput
{
Expand Down
2 changes: 1 addition & 1 deletion src/Cli/ColorProcessor.php
Expand Up @@ -14,7 +14,7 @@
* Class ColorProcessor.
*
* @since 1.0
* @deprecated 2.0 Use \Joomla\Application\Cli\Output\Processor\ColorProcessor
* @deprecated 2.0 Use the `joomla/console` package instead
*/
class ColorProcessor extends RealColorProcessor
{
Expand Down
3 changes: 2 additions & 1 deletion src/Cli/ColorStyle.php
Expand Up @@ -11,7 +11,8 @@
/**
* Class ColorStyle
*
* @since 1.0
* @since 1.0
* @deprecated 2.0 Use the `joomla/console` package instead
*/
final class ColorStyle
{
Expand Down
3 changes: 2 additions & 1 deletion src/Cli/Output/Processor/ColorProcessor.php
Expand Up @@ -14,7 +14,8 @@
/**
* Class ColorProcessor.
*
* @since 1.0
* @since 1.0
* @deprecated 2.0 Use the `joomla/console` package instead
*/
class ColorProcessor implements ProcessorInterface
{
Expand Down
3 changes: 2 additions & 1 deletion src/Cli/Output/Processor/ProcessorInterface.php
Expand Up @@ -11,7 +11,8 @@
/**
* Class ProcessorInterface.
*
* @since 1.1.0
* @since 1.1.0
* @deprecated 2.0 Use the `joomla/console` package instead
*/
interface ProcessorInterface
{
Expand Down
3 changes: 2 additions & 1 deletion src/Cli/Output/Stdout.php
Expand Up @@ -13,7 +13,8 @@
/**
* Class Stdout.
*
* @since 1.0
* @since 1.0
* @deprecated 2.0 Use the `joomla/console` package instead
*/
class Stdout extends CliOutput
{
Expand Down
3 changes: 2 additions & 1 deletion src/Cli/Output/Xml.php
Expand Up @@ -13,7 +13,8 @@
/**
* Class Xml.
*
* @since 1.0
* @since 1.0
* @deprecated 2.0 Use the `joomla/console` package instead
*/
class Xml extends CliOutput
{
Expand Down

0 comments on commit 2627d1b

Please sign in to comment.