InlineCommentUnitTest.php in Coder 8.2
Namespace
Drupal\Sniffs\CommentingFile
coder_sniffer/Drupal/Test/Commenting/InlineCommentUnitTest.phpView source
<?php
namespace Drupal\Sniffs\Commenting;
use Drupal\Test\CoderSniffUnitTest;
class InlineCommentUnitTest extends CoderSniffUnitTest {
  /**
   * Returns the lines where errors should occur.
   *
   * The key of the array should represent the line number and the value
   * should represent the number of errors that should occur on that line.
   *
   * @return array(int => int)
   */
  public function getErrorList($testFile = NULL) {
    return array(
      8 => 1,
      10 => 1,
      13 => 1,
      15 => 1,
      20 => 1,
      24 => 1,
      44 => 1,
      47 => 1,
      59 => 2,
      81 => 1,
      83 => 1,
    );
  }
  //end getErrorList()
  /**
   * Returns the lines where warnings should occur.
   *
   * The key of the array should represent the line number and the value
   * should represent the number of warnings that should occur on that line.
   *
   * @return array(int => int)
   */
  public function getWarningList($testFile = NULL) {
    return array(
      16 => 1,
    );
  }
}
//end classClasses
| Name   | Description | 
|---|---|
| InlineCommentUnitTest | 
