New upstream version 0.6.27
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user