OutputBlock.php 654 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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\Formatter;
  12. /**
  13. * Output block
  14. *
  15. * @author Anthon Pang <anthon.pang@gmail.com>
  16. */
  17. class OutputBlock
  18. {
  19. /**
  20. * @var string
  21. */
  22. public $type;
  23. /**
  24. * @var integer
  25. */
  26. public $depth;
  27. /**
  28. * @var array
  29. */
  30. public $selectors;
  31. /**
  32. * @var array
  33. */
  34. public $lines;
  35. /**
  36. * @var array
  37. */
  38. public $children;
  39. /**
  40. * @var \Leafo\ScssPhp\Formatter\OutputBlock
  41. */
  42. public $parent;
  43. }