Skip to content

Commit 1b23b14

Browse files
committed
#20 added /** @codeCoverageIgnore */
1 parent c9b5c9c commit 1b23b14

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/StaticConstructorLoader/DebugStaticConstructorLoader.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,96 +46,115 @@ public function __construct(ClassLoader $classLoader)
4646
array_map('spl_autoload_register', $loadersToRestore, $flagTrue, $flagTrue);
4747
}
4848

49+
/** @codeCoverageIgnore */
4950
public function loadClass($className): ?bool
5051
{
5152
return $this->classLoader->loadClass($className);
5253
}
5354

55+
/** @codeCoverageIgnore */
5456
public function getPrefixes()
5557
{
5658
return $this->classLoader->getPrefixes();
5759
}
5860

61+
/** @codeCoverageIgnore */
5962
public function getPrefixesPsr4()
6063
{
6164
return $this->classLoader->getPrefixesPsr4();
6265
}
6366

67+
/** @codeCoverageIgnore */
6468
public function getFallbackDirs()
6569
{
6670
return $this->classLoader->getFallbackDirs();
6771
}
6872

73+
/** @codeCoverageIgnore */
6974
public function getFallbackDirsPsr4()
7075
{
7176
return $this->classLoader->getFallbackDirsPsr4();
7277
}
7378

79+
/** @codeCoverageIgnore */
7480
public function getClassMap()
7581
{
7682
return $this->classLoader->getClassMap();
7783
}
7884

85+
/** @codeCoverageIgnore */
7986
public function addClassMap(array $classMap)
8087
{
8188
$this->classLoader->addClassMap($classMap);
8289
}
8390

91+
/** @codeCoverageIgnore */
8492
public function add($prefix, $paths, $prepend = false)
8593
{
8694
$this->classLoader->add($prefix, $paths, $prepend);
8795
}
8896

97+
/** @codeCoverageIgnore */
8998
public function addPsr4($prefix, $paths, $prepend = false)
9099
{
91100
$this->classLoader->addPsr4($prefix, $paths, $prepend);
92101
}
93102

103+
/** @codeCoverageIgnore */
94104
public function set($prefix, $paths)
95105
{
96106
$this->classLoader->set($prefix, $paths);
97107
}
98108

109+
/** @codeCoverageIgnore */
99110
public function setPsr4($prefix, $paths)
100111
{
101112
$this->classLoader->setPsr4($prefix, $paths);
102113
}
103114

115+
/** @codeCoverageIgnore */
104116
public function setUseIncludePath($useIncludePath)
105117
{
106118
$this->classLoader->setUseIncludePath($useIncludePath);
107119
}
108120

121+
/** @codeCoverageIgnore */
109122
public function getUseIncludePath()
110123
{
111124
return $this->classLoader->getUseIncludePath();
112125
}
113126

127+
/** @codeCoverageIgnore */
114128
public function setClassMapAuthoritative($classMapAuthoritative)
115129
{
116130
$this->classLoader->setClassMapAuthoritative($classMapAuthoritative);
117131
}
118132

133+
/** @codeCoverageIgnore */
119134
public function isClassMapAuthoritative()
120135
{
121136
return $this->classLoader->isClassMapAuthoritative();
122137
}
123138

139+
/** @codeCoverageIgnore */
124140
public function setApcuPrefix($apcuPrefix)
125141
{
126142
$this->classLoader->setApcuPrefix($apcuPrefix);
127143
}
128144

145+
/** @codeCoverageIgnore */
129146
public function getApcuPrefix()
130147
{
131148
return $this->classLoader->getApcuPrefix();
132149
}
133150

151+
/** @codeCoverageIgnore */
134152
public function register($prepend = false)
135153
{
136154
$this->classLoader->register($prepend);
137155
}
138156

157+
/** @codeCoverageIgnore */
139158
public function unregister()
140159
{
141160
$this->classLoader->unregister();

0 commit comments

Comments
 (0)