You are here

MethodScopeUnitTest.inc in Coder 8.2

File

coder_sniffer/Drupal/Test/Scope/MethodScopeUnitTest.inc
View source
<?php

trait TestTrait {

  /**
   * Function visibility is missing here.
   */
  function foo() {
  }

  /**
   * Visibility is missing here and should be auto-fixed correctly.
   */
  static function bar() {
  }

}

Traits

Namesort descending Description
TestTrait