Skip to content

Commit

Permalink
#20 added /** @codeCoverageIgnore */
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-andreyev committed Jun 10, 2020
1 parent c9b5c9c commit 1b23b14
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/StaticConstructorLoader/DebugStaticConstructorLoader.php
Expand Up @@ -46,96 +46,115 @@ public function __construct(ClassLoader $classLoader)
array_map('spl_autoload_register', $loadersToRestore, $flagTrue, $flagTrue);
}

/** @codeCoverageIgnore */
public function loadClass($className): ?bool
{
return $this->classLoader->loadClass($className);
}

/** @codeCoverageIgnore */
public function getPrefixes()
{
return $this->classLoader->getPrefixes();
}

/** @codeCoverageIgnore */
public function getPrefixesPsr4()
{
return $this->classLoader->getPrefixesPsr4();
}

/** @codeCoverageIgnore */
public function getFallbackDirs()
{
return $this->classLoader->getFallbackDirs();
}

/** @codeCoverageIgnore */
public function getFallbackDirsPsr4()
{
return $this->classLoader->getFallbackDirsPsr4();
}

/** @codeCoverageIgnore */
public function getClassMap()
{
return $this->classLoader->getClassMap();
}

/** @codeCoverageIgnore */
public function addClassMap(array $classMap)
{
$this->classLoader->addClassMap($classMap);
}

/** @codeCoverageIgnore */
public function add($prefix, $paths, $prepend = false)
{
$this->classLoader->add($prefix, $paths, $prepend);
}

/** @codeCoverageIgnore */
public function addPsr4($prefix, $paths, $prepend = false)
{
$this->classLoader->addPsr4($prefix, $paths, $prepend);
}

/** @codeCoverageIgnore */
public function set($prefix, $paths)
{
$this->classLoader->set($prefix, $paths);
}

/** @codeCoverageIgnore */
public function setPsr4($prefix, $paths)
{
$this->classLoader->setPsr4($prefix, $paths);
}

/** @codeCoverageIgnore */
public function setUseIncludePath($useIncludePath)
{
$this->classLoader->setUseIncludePath($useIncludePath);
}

/** @codeCoverageIgnore */
public function getUseIncludePath()
{
return $this->classLoader->getUseIncludePath();
}

/** @codeCoverageIgnore */
public function setClassMapAuthoritative($classMapAuthoritative)
{
$this->classLoader->setClassMapAuthoritative($classMapAuthoritative);
}

/** @codeCoverageIgnore */
public function isClassMapAuthoritative()
{
return $this->classLoader->isClassMapAuthoritative();
}

/** @codeCoverageIgnore */
public function setApcuPrefix($apcuPrefix)
{
$this->classLoader->setApcuPrefix($apcuPrefix);
}

/** @codeCoverageIgnore */
public function getApcuPrefix()
{
return $this->classLoader->getApcuPrefix();
}

/** @codeCoverageIgnore */
public function register($prepend = false)
{
$this->classLoader->register($prepend);
}

/** @codeCoverageIgnore */
public function unregister()
{
$this->classLoader->unregister();
Expand Down

0 comments on commit 1b23b14

Please sign in to comment.