Initial Drupal 11 with DDEV setup

This commit is contained in:
gluebox
2025-10-08 11:39:17 -04:00
commit 89ef74b305
25344 changed files with 2599172 additions and 0 deletions

View File

@ -0,0 +1,120 @@
<?php
/**
* This file is part of the Peast package
*
* (c) Marco Marchiò <marco.mm89@gmail.com>
*
* For the full copyright and license information refer to the LICENSE file
* distributed with this source code
*/
namespace Peast\Syntax\Node;
/**
* A node that represents a conditional expression.
* For example: test() ? ok() : fail()
*
* @author Marco Marchiò <marco.mm89@gmail.com>
*/
class ConditionalExpression extends Node implements Expression
{
/**
* Map of node properties
*
* @var array
*/
protected $propertiesMap = array(
"test" => true,
"consequent" => true,
"alternate" => true
);
/**
* The test expression
*
* @var Expression
*/
protected $test;
/**
* The consequent expression
*
* @var Expression
*/
protected $consequent;
/**
* The alternate expression
*
* @var Expression
*/
protected $alternate;
/**
* Returns the test expression
*
* @return Expression
*/
public function getTest()
{
return $this->test;
}
/**
* Sets the test expression
*
* @param Expression $test Test expression
*
* @return $this
*/
public function setTest(Expression $test)
{
$this->test = $test;
return $this;
}
/**
* Returns the consequent expression
*
* @return Expression
*/
public function getConsequent()
{
return $this->consequent;
}
/**
* Sets the consequent expression
*
* @param Expression $consequent Consequent expression
*
* @return $this
*/
public function setConsequent(Expression $consequent)
{
$this->consequent = $consequent;
return $this;
}
/**
* Returns the alternate expression
*
* @return Expression
*/
public function getAlternate()
{
return $this->alternate;
}
/**
* Sets the alternate expression
*
* @param Expression $alternate Alternate expression
*
* @return $this
*/
public function setAlternate(Expression $alternate)
{
$this->alternate = $alternate;
return $this;
}
}