Преглед изворни кода

PHP warning issued when the CSS is rebuilt (SASS lib)

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@3814 a333f486-631f-4898-b8df-5754b55c2be0
romainq пре 9 година
родитељ
комит
98e884a7cf
1 измењених фајлова са 4 додато и 1 уклоњено
  1. 4 1
      lib/sass/sass/script/literals/SassLiteral.php

+ 4 - 1
lib/sass/sass/script/literals/SassLiteral.php

@@ -355,5 +355,8 @@ abstract class SassLiteral {
 	 * @param string the subject string
 	 * @return mixed match at the start of the string or false if no match
 	 */
-	abstract public static function isa($subject);
+	public static function isa($subject)
+	{
+		return false;
+	}
 }