Sstalle\php7cc\NodeVisitor\BitwiseShiftVisitor::__construct PHP Method

__construct() public method

public __construct ( $intSize = self::MIN_INT_SIZE )
$intSize
    public function __construct($intSize = self::MIN_INT_SIZE)
    {
        if ($intSize <= 0) {
            throw new \InvalidArgumentException(sprintf('Integer size must be greater than 0, %d given', $intSize));
        }
        $this->intSize = $intSize;
    }
BitwiseShiftVisitor