Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
getUnion example
/** * {@inheritdoc} */
public
function
D
getTables
(
)
{
return
$this
->tables;
}
/** * {@inheritdoc} */
public
function
D
getUnion
(
)
{
return
$this
->union;
}
/** * {@inheritdoc} */
public
function
escapeLike
(
$string
)
{
return
$this
->connection->
escapeLike
(
$string
)
;
}
/** * {@inheritdoc} */
public
function
D
getUnion
(
)
;
/** * Escapes characters that work as wildcard characters in a LIKE pattern. * * @param $string * The string to escape. * * @return string * The escaped string. * * @see \Drupal\Core\Database\Connection::escapeLike() */
/** * {@inheritdoc} */
public
function
D
getTables
(
)
{
return
$this
->query->
getTables
(
)
;
}
/** * {@inheritdoc} */
public
function
D
getUnion
(
)
{
return
$this
->query->
getUnion
(
)
;
}
/** * {@inheritdoc} */
public
function
escapeLike
(
$string
)
{
return
$this
->query->
escapeLike
(
$string
)
;
}
/** * {@inheritdoc} */