PHPSA\Variable::getGets PHP Метод

getGets() публичный Метод

Gets the read counter.
public getGets ( ) : integer
Результат integer
    public function getGets()
    {
        return $this->gets;
    }

Usage Example

Пример #1
0
 public function testIncGets()
 {
     $variable = new Variable('a', null, CompiledExpression::UNKNOWN);
     static::assertSame(0, $variable->getGets());
     $variable->incGets();
     static::assertSame(1, $variable->getGets());
     $variable->incGets();
     static::assertSame(2, $variable->getGets());
     $variable->incGets();
     $variable->incGets();
     static::assertSame(4, $variable->getGets());
 }