Node.php 520 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * SCSSPHP
  4. *
  5. * @copyright 2012-2015 Leaf Corcoran
  6. *
  7. * @license http://opensource.org/licenses/MIT MIT
  8. *
  9. * @link http://leafo.github.io/scssphp
  10. */
  11. namespace Leafo\ScssPhp;
  12. /**
  13. * Base node
  14. *
  15. * @author Anthon Pang <anthon.pang@gmail.com>
  16. */
  17. abstract class Node
  18. {
  19. /**
  20. * @var string
  21. */
  22. public $type;
  23. /**
  24. * @var integer
  25. */
  26. public $sourceIndex;
  27. /**
  28. * @var integer
  29. */
  30. public $sourceLine;
  31. /**
  32. * @var integer
  33. */
  34. public $sourceColumn;
  35. }