@@ -46,96 +46,115 @@ public function __construct(ClassLoader $classLoader)
46
46
array_map ('spl_autoload_register ' , $ loadersToRestore , $ flagTrue , $ flagTrue );
47
47
}
48
48
49
+ /** @codeCoverageIgnore */
49
50
public function loadClass ($ className ): ?bool
50
51
{
51
52
return $ this ->classLoader ->loadClass ($ className );
52
53
}
53
54
55
+ /** @codeCoverageIgnore */
54
56
public function getPrefixes ()
55
57
{
56
58
return $ this ->classLoader ->getPrefixes ();
57
59
}
58
60
61
+ /** @codeCoverageIgnore */
59
62
public function getPrefixesPsr4 ()
60
63
{
61
64
return $ this ->classLoader ->getPrefixesPsr4 ();
62
65
}
63
66
67
+ /** @codeCoverageIgnore */
64
68
public function getFallbackDirs ()
65
69
{
66
70
return $ this ->classLoader ->getFallbackDirs ();
67
71
}
68
72
73
+ /** @codeCoverageIgnore */
69
74
public function getFallbackDirsPsr4 ()
70
75
{
71
76
return $ this ->classLoader ->getFallbackDirsPsr4 ();
72
77
}
73
78
79
+ /** @codeCoverageIgnore */
74
80
public function getClassMap ()
75
81
{
76
82
return $ this ->classLoader ->getClassMap ();
77
83
}
78
84
85
+ /** @codeCoverageIgnore */
79
86
public function addClassMap (array $ classMap )
80
87
{
81
88
$ this ->classLoader ->addClassMap ($ classMap );
82
89
}
83
90
91
+ /** @codeCoverageIgnore */
84
92
public function add ($ prefix , $ paths , $ prepend = false )
85
93
{
86
94
$ this ->classLoader ->add ($ prefix , $ paths , $ prepend );
87
95
}
88
96
97
+ /** @codeCoverageIgnore */
89
98
public function addPsr4 ($ prefix , $ paths , $ prepend = false )
90
99
{
91
100
$ this ->classLoader ->addPsr4 ($ prefix , $ paths , $ prepend );
92
101
}
93
102
103
+ /** @codeCoverageIgnore */
94
104
public function set ($ prefix , $ paths )
95
105
{
96
106
$ this ->classLoader ->set ($ prefix , $ paths );
97
107
}
98
108
109
+ /** @codeCoverageIgnore */
99
110
public function setPsr4 ($ prefix , $ paths )
100
111
{
101
112
$ this ->classLoader ->setPsr4 ($ prefix , $ paths );
102
113
}
103
114
115
+ /** @codeCoverageIgnore */
104
116
public function setUseIncludePath ($ useIncludePath )
105
117
{
106
118
$ this ->classLoader ->setUseIncludePath ($ useIncludePath );
107
119
}
108
120
121
+ /** @codeCoverageIgnore */
109
122
public function getUseIncludePath ()
110
123
{
111
124
return $ this ->classLoader ->getUseIncludePath ();
112
125
}
113
126
127
+ /** @codeCoverageIgnore */
114
128
public function setClassMapAuthoritative ($ classMapAuthoritative )
115
129
{
116
130
$ this ->classLoader ->setClassMapAuthoritative ($ classMapAuthoritative );
117
131
}
118
132
133
+ /** @codeCoverageIgnore */
119
134
public function isClassMapAuthoritative ()
120
135
{
121
136
return $ this ->classLoader ->isClassMapAuthoritative ();
122
137
}
123
138
139
+ /** @codeCoverageIgnore */
124
140
public function setApcuPrefix ($ apcuPrefix )
125
141
{
126
142
$ this ->classLoader ->setApcuPrefix ($ apcuPrefix );
127
143
}
128
144
145
+ /** @codeCoverageIgnore */
129
146
public function getApcuPrefix ()
130
147
{
131
148
return $ this ->classLoader ->getApcuPrefix ();
132
149
}
133
150
151
+ /** @codeCoverageIgnore */
134
152
public function register ($ prepend = false )
135
153
{
136
154
$ this ->classLoader ->register ($ prepend );
137
155
}
138
156
157
+ /** @codeCoverageIgnore */
139
158
public function unregister ()
140
159
{
141
160
$ this ->classLoader ->unregister ();
0 commit comments