Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. LogicalAndToken.php

class LogicalAndToken

Logical AND token.

@author Boris Mikhaylov <kaguxmail@gmail.com>

Hierarchy

  • class \Prophecy\Argument\Token\LogicalAndToken implements \Prophecy\Argument\Token\TokenInterface

Expanded class hierarchy of LogicalAndToken

File

vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php, line 19

Namespace

Prophecy\Argument\Token
View source
class LogicalAndToken implements TokenInterface {
    
    /**
     * @var list<TokenInterface>
     */
    private $tokens = array();
    
    /**
     * @param array<mixed> $arguments exact values or tokens
     */
    public function __construct(array $arguments) {
        foreach ($arguments as $argument) {
            if (!$argument instanceof TokenInterface) {
                $argument = new ExactValueToken($argument);
            }
            $this->tokens[] = $argument;
        }
    }
    
    /**
     * Scores maximum score from scores returned by tokens for this argument if all of them score.
     *
     * @param mixed $argument
     *
     * @return false|int
     */
    public function scoreArgument($argument) {
        if (0 === count($this->tokens)) {
            return false;
        }
        $maxScore = 0;
        foreach ($this->tokens as $token) {
            $score = $token->scoreArgument($argument);
            if (false === $score) {
                return false;
            }
            $maxScore = max($score, $maxScore);
        }
        return $maxScore;
    }
    
    /**
     * Returns false.
     *
     * @return boolean
     */
    public function isLast() {
        return false;
    }
    
    /**
     * Returns string representation for token.
     *
     * @return string
     */
    public function __toString() {
        return sprintf('bool(%s)', implode(' AND ', $this->tokens));
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
LogicalAndToken::$tokens private property
LogicalAndToken::isLast public function Returns false. Overrides TokenInterface::isLast
LogicalAndToken::scoreArgument public function Scores maximum score from scores returned by tokens for this argument if all of them score. Overrides TokenInterface::scoreArgument
LogicalAndToken::__construct public function
LogicalAndToken::__toString public function Returns string representation for token. Overrides TokenInterface::__toString

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal