/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakephp
/
cakephp
/
src
/
Database
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Database
mkdir
upload
Name
Size
Mode
Actions
Driver/
-
0755
rm
Exception/
-
0755
rm
Expression/
-
0755
rm
Log/
-
0755
rm
Retry/
-
0755
rm
Schema/
-
0755
rm
Statement/
-
0755
rm
Type/
-
0755
rm
composer.json
1192
0644
edit
dl
rm
Connection.php
29032
0644
edit
dl
rm
ConstraintsInterface.php
1842
0644
edit
dl
rm
Driver.php
13021
0644
edit
dl
rm
DriverInterface.php
9588
0644
edit
dl
rm
Exception.php
572
0644
edit
dl
rm
ExpressionInterface.php
1367
0644
edit
dl
rm
FieldTypeConverter.php
4404
0644
edit
dl
rm
FunctionsBuilder.php
14662
0644
edit
dl
rm
IdentifierQuoter.php
7962
0644
edit
dl
rm
LICENSE.txt
1204
0644
edit
dl
rm
PostgresCompiler.php
2803
0644
edit
dl
rm
Query.php
82857
0644
edit
dl
rm
QueryCompiler.php
16899
0644
edit
dl
rm
README.md
10566
0644
edit
dl
rm
SchemaCache.php
3430
0644
edit
dl
rm
SqlDialectTrait.php
171
0644
edit
dl
rm
SqliteCompiler.php
937
0644
edit
dl
rm
SqlserverCompiler.php
5410
0644
edit
dl
rm
StatementInterface.php
6777
0644
edit
dl
rm
Type.php
165
0644
edit
dl
rm
TypeConverterTrait.php
2197
0644
edit
dl
rm
TypedResultInterface.php
1093
0644
edit
dl
rm
TypedResultTrait.php
1356
0644
edit
dl
rm
TypeFactory.php
5402
0644
edit
dl
rm
TypeInterface.php
3334
0644
edit
dl
rm
TypeMap.php
4587
0644
edit
dl
rm
TypeMapTrait.php
2389
0644
edit
dl
rm
ValueBinder.php
4533
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Database/TypeInterface.php
(3334B)
<?php declare(strict_types=1); /** * CakePHP(tm) : Rapid Development Framework (https://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * @link https://cakephp.org CakePHP(tm) Project * @since 3.2.14 * @license https://opensource.org/licenses/mit-license.php MIT License */ namespace Cake\Database; /** * Encapsulates all conversion functions for values coming from a database into PHP and * going from PHP into a database. */ interface TypeInterface { /** * Casts given value from a PHP type to one acceptable by a database. * * @param mixed $value Value to be converted to a database equivalent. * @param \Cake\Database\DriverInterface $driver Object from which database preferences and configuration will be extracted. * @return mixed Given PHP type casted to one acceptable by a database. */ public function toDatabase($value, DriverInterface $driver); /** * Casts given value from a database type to a PHP equivalent. * * @param mixed $value Value to be converted to PHP equivalent * @param \Cake\Database\DriverInterface $driver Object from which database preferences and configuration will be extracted * @return mixed Given value casted from a database to a PHP equivalent. */ public function toPHP($value, DriverInterface $driver); /** * Casts given value to its Statement equivalent. * * @param mixed $value Value to be converted to PDO statement. * @param \Cake\Database\DriverInterface $driver Object from which database preferences and configuration will be extracted. * @return mixed Given value casted to its Statement equivalent. */ public function toStatement($value, DriverInterface $driver); /** * Marshals flat data into PHP objects. * * Most useful for converting request data into PHP objects, * that make sense for the rest of the ORM/Database layers. * * @param mixed $value The value to convert. * @return mixed Converted value. */ public function marshal($value); /** * Returns the base type name that this class is inheriting. * * This is useful when extending base type for adding extra functionality, * but still want the rest of the framework to use the same assumptions it would * do about the base type it inherits from. * * @return string|null The base type name that this class is inheriting. */ public function getBaseType(): ?string; /** * Returns type identifier name for this object. * * @return string|null The type identifier name for this object. */ public function getName(): ?string; /** * Generate a new primary key value for a given type. * * This method can be used by types to create new primary key values * when entities are inserted. * * @return mixed A new primary key value. * @see \Cake\Database\Type\UuidType */ public function newId(); }
Save
cmd:
run