Block.php 746 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. * Block
  14. *
  15. * @author Anthon Pang <anthon.pang@gmail.com>
  16. */
  17. class Block
  18. {
  19. /**
  20. * @var string
  21. */
  22. public $type;
  23. /**
  24. * @var \Leafo\ScssPhp\Block
  25. */
  26. public $parent;
  27. /**
  28. * @var integer
  29. */
  30. public $sourceIndex;
  31. /**
  32. * @var integer
  33. */
  34. public $sourceLine;
  35. /**
  36. * @var integer
  37. */
  38. public $sourceColumn;
  39. /**
  40. * @var array
  41. */
  42. public $selectors;
  43. /**
  44. * @var array
  45. */
  46. public $comments;
  47. /**
  48. * @var array
  49. */
  50. public $children;
  51. }