isUnused() 공개 메소드

Check if you are setting values to variable but didn't use it (means get)
public isUnused ( ) : boolean
리턴 boolean
예제 #1
0
 public function testIsUnusedFalse()
 {
     $variable = new Variable('a', null, CompiledExpression::UNKNOWN);
     static::assertFalse($variable->isUnused());
 }