You are here

public function LogicalNotToken::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php \Prophecy\Argument\Token\LogicalNotToken::__construct()

Parameters

mixed $value exact value or token:

File

vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php, line 27

Class

LogicalNotToken
Logical NOT token.

Namespace

Prophecy\Argument\Token

Code

public function __construct($value) {
  $this->token = $value instanceof TokenInterface ? $value : new ExactValueToken($value);
}