No Description

SampleClass.php 510B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /*
  3. * This file is part of sebastian/comparator.
  4. *
  5. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace SebastianBergmann\Comparator;
  11. /**
  12. * A sample class.
  13. */
  14. class SampleClass
  15. {
  16. public $a;
  17. protected $b;
  18. protected $c;
  19. public function __construct($a, $b, $c)
  20. {
  21. $this->a = $a;
  22. $this->b = $b;
  23. $this->c = $c;
  24. }
  25. }