forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSerializerFactory.zep
54 lines (46 loc) · 1.34 KB
/
SerializerFactory.zep
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
/**
* This file is part of the Phalcon Framework.
*
* (c) Phalcon Team <[email protected]>
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/
namespace Phalcon\Storage;
use Phalcon\Factory\AbstractFactory;
use Phalcon\Storage\Serializer\SerializerInterface;
class SerializerFactory extends AbstractFactory
{
/**
* SerializerFactory constructor.
*
* @param array services
*/
public function __construct(array! services = [])
{
this->init(services);
}
/**
* @param string name
*
* @return SerializerInterface
* @throws Exception
*/
public function newInstance(string! name) -> <SerializerInterface>
{
var definition;
let definition = this->getService(name);
return create_instance(definition);
}
protected function getAdapters() -> array
{
return [
"base64" : "Phalcon\\Storage\\Serializer\\Base64",
"igbinary" : "Phalcon\\Storage\\Serializer\\Igbinary",
"json" : "Phalcon\\Storage\\Serializer\\Json",
"msgpack" : "Phalcon\\Storage\\Serializer\\Msgpack",
"none" : "Phalcon\\Storage\\Serializer\\None",
"php" : "Phalcon\\Storage\\Serializer\\Php"
];
}
}