SampleClass.php

File

drupal/core/vendor/phpunit/phpunit/Tests/_files/SampleClass.php
View source
<?php

class SampleClass {
  public $a;
  protected $b;
  protected $c;
  public function __construct($a, $b, $c) {
    $this->a = $a;
    $this->b = $b;
    $this->c = $c;
  }

}

Classes

Namesort descending Description
SampleClass