artlantis / phamlp

Automatically exported from code.google.com/p/phamlp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sass: strict standarts

GoogleCodeExporter opened this issue · comments

What steps will reproduce the problem?
$sassParser = new \SassParser(array(
    'syntax' => \SassFile::SCSS
));
$css = $sassParser->toCss($scss, false);

What is the expected output? What do you see instead?
we get strict standart error messages:

Strict standards: Declaration of SassPropertyNode::isa() should be compatible 
with that of SassNode::isa() in 
.../libs/phamlp/3.2/sass/tree/SassPropertyNode.php on line 239

Strict standards: Static function SassLiteral::isa() should not be abstract in 
.../libs/phamlp/3.2/sass/script/literals/SassLiteral.php on line 358

What version of the product are you using? On what operating system?
3.2


Original issue reported on code.google.com by tomas.ho...@gmail.com on 11 Oct 2011 at 1:57

try insert in your php:
error_reporting(error_reporting()&~E_STRICT);

Original comment by lsc999%i...@gtempaccount.com on 26 Dec 2011 at 1:01

I have this problem too, i try to insert this in my php code :

error_reporting(E_ALL & ~E_STRICT);

But that don't works, i still get same error :/

Original comment by ca...@live.fr on 15 Mar 2012 at 11:15