for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Transcode plugin for Craft CMS
*
* Transcode
* @link https://nystudio107.com
* @copyright Copyright (c) 2017 Transcode
*/
namespace nystudio107\transcoder\console\controllers;
use yii\console\Controller;
* Default Command
* @author Transcode
* @package Transcode
* @since 1.0.0
class DefaultController extends Controller
{
// Public Methods
// =========================================================================
* Handle transcoder/default console commands
* @return mixed
public function actionIndex()
$result = 'something';
echo "Welcome to the console DefaultController actionIndex() method\n";
return $result;
}
* Handle transcoder/default/do-something console commands
public function actionDoSomething()
echo "Welcome to the console DefaultController actionDoSomething() method\n";