-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathConfigInterface.php
82 lines (73 loc) · 1.56 KB
/
ConfigInterface.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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\ObjectManager;
interface ConfigInterface
{
/**
* Set class relations
*
* @param RelationsInterface $relations
*
* @return void
*/
public function setRelations(RelationsInterface $relations);
/**
* Set configuration cache instance
*
* @param ConfigCacheInterface $cache
*
* @return void
*/
public function setCache(ConfigCacheInterface $cache);
/**
* Retrieve list of arguments per type
*
* @param string $type
* @return array
*/
public function getArguments($type);
/**
* Check whether type is shared
*
* @param string $type
* @return bool
*/
public function isShared($type);
/**
* Retrieve instance type
*
* @param string $instanceName
* @return mixed
*/
public function getInstanceType($instanceName);
/**
* Retrieve preference for type
*
* @param string $type
* @return string
* @throws \LogicException
*/
public function getPreference($type);
/**
* Returns list of virtual types
*
* @return array
*/
public function getVirtualTypes();
/**
* Extend configuration
*
* @param array $configuration
* @return void
*/
public function extend(array $configuration);
/**
* Returns list on preferences
*
* @return array
*/
public function getPreferences();
}