You are here

MethodScopeUnitTest.inc in Coder 8.3.x

Same filename and directory in other branches
  1. 8.3 tests/Drupal/Scope/MethodScopeUnitTest.inc

File

tests/Drupal/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