PHP code example of kerasai / robo-phpcs

1. Go to this page and download the library: Download kerasai/robo-phpcs library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kerasai / robo-phpcs example snippets




class RoboFile {

  use \Kerasai\Robo\Phpcs\loadTasks;

  /**
   * PHPCS code style checks
   */
  public function testPhpcs() {
    $this->taskPhpcs()->run();
  }

}