File tree Expand file tree Collapse file tree 3 files changed +0
-33
lines changed
lib/internal/Magento/Framework
App/ObjectManager/ConfigLoader
setup/src/Magento/Setup/Module/Di/Compiler/Config/Writer Expand file tree Collapse file tree 3 files changed +0
-33
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,6 @@ class Compiled implements ConfigLoaderInterface
20
20
*/
21
21
private $ configCache = [];
22
22
23
- /**
24
- * @var SerializerInterface
25
- */
26
- private $ serializer ;
27
-
28
23
/**
29
24
* {inheritdoc}
30
25
*/
Original file line number Diff line number Diff line change 6
6
namespace Magento \Framework \ObjectManager \Config ;
7
7
8
8
use Magento \Framework \ObjectManager \ConfigInterface ;
9
- use Magento \Framework \Serialize \SerializerInterface ;
10
9
use Magento \Framework \ObjectManager \ConfigCacheInterface ;
11
10
use Magento \Framework \ObjectManager \RelationsInterface ;
12
11
@@ -30,11 +29,6 @@ class Compiled implements ConfigInterface
30
29
*/
31
30
private $ preferences ;
32
31
33
- /**
34
- * @var SerializerInterface
35
- */
36
- private $ serializer ;
37
-
38
32
/**
39
33
* Constructor
40
34
*
Original file line number Diff line number Diff line change 9
9
10
10
use Magento \Framework \App \Filesystem \DirectoryList ;
11
11
use Magento \Setup \Module \Di \Compiler \Config \WriterInterface ;
12
- use Magento \Framework \Serialize \SerializerInterface ;
13
- use Magento \Framework \Serialize \Serializer \Serialize ;
14
12
15
13
class Filesystem implements WriterInterface
16
14
{
@@ -19,11 +17,6 @@ class Filesystem implements WriterInterface
19
17
*/
20
18
private $ directoryList ;
21
19
22
- /**
23
- * @var SerializerInterface
24
- */
25
- private $ serializer ;
26
-
27
20
/**
28
21
* Constructor
29
22
*
@@ -62,19 +55,4 @@ private function initialize()
62
55
mkdir ($ this ->directoryList ->getPath (DirectoryList::GENERATED_METADATA ));
63
56
}
64
57
}
65
-
66
- /**
67
- * Get serializer
68
- *
69
- * @return SerializerInterface
70
- * @deprecated
71
- */
72
- private function getSerializer ()
73
- {
74
- if (null === $ this ->serializer ) {
75
- $ this ->serializer = \Magento \Framework \App \ObjectManager::getInstance ()
76
- ->get (Serialize::class);
77
- }
78
- return $ this ->serializer ;
79
- }
80
58
}
You can’t perform that action at this time.
0 commit comments