Blame view

public/vendor/sabberworm/php-css-parser/src/Renderable.php 296 Bytes
86143e36f   Андрей Ларионов   Коммит вторник
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php
  
  namespace Sabberworm\CSS;
  
  interface Renderable
  {
      /**
       * @return string
       */
      public function __toString();
  
      /**
       * @return string
       */
      public function render(OutputFormat $oOutputFormat);
  
      /**
       * @return int
       */
      public function getLineNo();
  }