You are here

class TestNull in Coder 8.3.x

Same name and namespace in other branches
  1. 8.3 tests/DrupalPractice/Objects/StrictSchemaDisabledUnitTest.inc \TestNull

Hierarchy

Expanded class hierarchy of TestNull

File

tests/DrupalPractice/Objects/StrictSchemaDisabledUnitTest.inc, line 14

View source
class TestNull {
  protected $strictConfigSchema = NULL;
  public function strictConfigSchema() {

    // This is ok because it's non-member variable.
    $strictConfigSchema = FALSE;
    return $strictConfigSchema;
  }

}

Members