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

SVN:trunk[3814]
This commit is contained in:
Romain Quetiez
2015-11-09 10:26:11 +00:00
parent 05e9f394f0
commit b071c47674

View File

@@ -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;
}
}