Blame view

public/vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php 273 Bytes
86143e36f   Андрей Ларионов   Коммит вторник
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
  
  namespace Sabberworm\CSS\Parsing;
  
  /**
   * Thrown if the CSS parser encounters end of file it did not expect.
   *
   * Extends `UnexpectedTokenException` in order to preserve backwards compatibility.
   */
  class UnexpectedEOFException extends UnexpectedTokenException
  {
  }