No Description

SampleClass.php 809B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /*
  3. * This file is part of the Comparator package.
  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. * @package Comparator
  15. * @author Sebastian Bergmann <sebastian@phpunit.de>
  16. * @copyright Sebastian Bergmann <sebastian@phpunit.de>
  17. * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
  18. * @link http://www.github.com/sebastianbergmann/comparator
  19. */
  20. class SampleClass
  21. {
  22. public $a;
  23. protected $b;
  24. protected $c;
  25. public function __construct($a, $b, $c)
  26. {
  27. $this->a = $a;
  28. $this->b = $b;
  29. $this->c = $c;
  30. }
  31. }