New upstream version 0.6.27

This commit is contained in:
geos_one
2025-08-06 18:11:51 +02:00
parent a6b4158f1f
commit 56a986c0ba
563 changed files with 45811 additions and 35282 deletions

View File

@@ -1,4 +1,11 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php
// phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace
// phpcs:disable PSR1.Files.SideEffects
defined('SYSPATH') or die('No direct access allowed.');
// phpcs:enable PSR1.Files.SideEffects
// phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
/**
* Database expression class to allow for explicit joins and where expressions.
*
@@ -9,18 +16,18 @@
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Database_Expression_Core {
class Database_Expression_Core
{
protected $expression;
protected $expression;
public function __construct($expression)
{
$this->expression = $expression;
}
public function __construct($expression)
{
$this->expression = $expression;
}
public function __toString()
{
return (string) $this->expression;
}
} // End Database Expr Class
public function __toString()
{
return (string) $this->expression;
}
}
// End Database Expr Class