public function NamespacedSingleClassLOC1000::test9

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/Fixtures/NamespacedSingleClassLOC1000.php, line 232

Class

NamespacedSingleClassLOC1000

Namespace

Doctrine\Tests\Common\Annotations\Fixtures

Code

public function test9() {
  echo $this->test1;
  echo $this->test2;
  echo $this->test3;
  $array = array(
    1,
    2,
    3,
    4,
    5,
    6,
    7,
    8,
    9,
    10,
  );
  foreach ($array as $key => $value) {
    echo $key . ' => ' . $value;
  }
  $val = (string) self::TEST1;
  $val .= (string) self::TEST2;
  $val .= (string) self::TEST3;
  $val .= (string) self::TEST4;
  $val .= (string) self::TEST5;
  $val .= (string) self::TEST6;
  $val .= (string) self::TEST7;
  $val .= (string) self::TEST8;
  $val .= (string) self::TEST9;
  strtolower($val);
  return $val;
}