-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathTypeInterface.php
91 lines (83 loc) · 3.26 KB
/
TypeInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?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();
}