for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Resta\Console\Source\Path;
use Resta\Console\ConsoleOutputter;
use Resta\Console\ConsoleListAccessor;
class Path extends ConsoleOutputter
{
use ConsoleListAccessor;
/**
* @var $type
$type
0
*/
public $type = 'path';
* @var $define
$define
public $define = 'returns path information for application';
* @var $commandRule
$commandRule
public $commandRule = ['path'];
* @return mixed|void
public function get()
$path = app()->path()->{$this->argument['path']}();
echo $this->classical($path);
}