File "DeleteClause.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/DeleteClause.php
File size: 410 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\AST;
if (!defined('ABSPATH')) exit;
class DeleteClause extends Node
{
 public $abstractSchemaName;
 public $aliasIdentificationVariable;
 public function __construct($abstractSchemaName)
 {
 $this->abstractSchemaName = $abstractSchemaName;
 }
 public function dispatch($sqlWalker)
 {
 return $sqlWalker->walkDeleteClause($this);
 }
}