No Description

Book.php 715B

123456789101112131415161718192021222324252627
  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 book.
  13. *
  14. * @package Comparator
  15. * @author Bernhard Schussek <bschussek@2bepublished.at>
  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 Book
  21. {
  22. // the order of properties is important for testing the cycle!
  23. public $author = null;
  24. }