src/GraphQL/AST/Common/ImplementInterfaces.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * This file is part of Railt package.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
declare(strict_types=1);

namespace Railt\GraphQL\AST\Common;

use Railt\GraphQL\AST\Node;

/**
 * Class ImplementInterfaces
 * @internal This type is generated using a parser, please do not use it inside your application code.
 */
class ImplementInterfaces extends Node
{
    /**
     * @var array|string[]
     */
    public $interfaces = [];

    /**
     * @param mixed $value
     * @return bool
     */
    protected function each($value): bool
    {
        if ($value instanceof Name) {
            $this->interfaces[] = $value->value;

            return true;
        }

        return parent::each($value);
    }
}