Force logging output

This commit is contained in:
Dennis Eichhorn 2018-11-30 21:06:12 +01:00
parent 606069056e
commit ce939eb7de
2 changed files with 3 additions and 19 deletions

View File

@ -523,25 +523,6 @@ class Builder extends BuilderAbstract
return $this->wheres[self::getPublicColumnName($column)] ?? null;
}
/**
* Get table name of system
*
* @param mixed $expression System expression
* @param string $systemIdentifier System identifier
*
* @return string|null
*
* @since 1.0.0
*/
public function getTableOfSystem($expression, string $systemIdentifier) : ?string
{
if (($pos = \strpos($expression, $systemIdentifier . '.' . $systemIdentifier)) === false) {
return null;
}
return \explode('.', $expression)[0];
}
/**
* Where and sub condition.
*

View File

@ -1,6 +1,9 @@
<?php
ini_set('memory_limit', '2048M');
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
if (\file_exists('vendor/autoload.php')) {
include_once 'vendor/autoload.php';