File: /home/cafsindia/help.cafsindia.com/var/cache/dev/ContainerYPd8UuT/ApplicationCollection_a40b613.php
<?php
namespace ContainerYPd8UuT;
include_once \dirname(__DIR__, 4).'/vendor/uvdesk/extension-framework/Utils/ApplicationCollection.php';
class ApplicationCollection_a40b613 extends \Webkul\UVDesk\ExtensionFrameworkBundle\Utils\ApplicationCollection implements \ProxyManager\Proxy\VirtualProxyInterface
{
/**
* @var \Webkul\UVDesk\ExtensionFrameworkBundle\Utils\ApplicationCollection|null wrapped object, if the proxy is initialized
*/
private $valueHolder4298d = null;
/**
* @var \Closure|null initializer responsible for generating the wrapped object
*/
private $initializer5bb96 = null;
/**
* @var bool[] map of public properties of the parent class
*/
private static $publicProperties1d7af = [
];
public function organizeCollection()
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, 'organizeCollection', array(), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
return $this->valueHolder4298d->organizeCollection();
}
public function getCollection()
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, 'getCollection', array(), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
return $this->valueHolder4298d->getCollection();
}
public function findApplicationsByVendor($vendor)
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, 'findApplicationsByVendor', array('vendor' => $vendor), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
return $this->valueHolder4298d->findApplicationsByVendor($vendor);
}
public function findApplicationsByPackage(\Webkul\UVDesk\ExtensionFrameworkBundle\Definition\Package\PackageInterface $package)
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, 'findApplicationsByPackage', array('package' => $package), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
return $this->valueHolder4298d->findApplicationsByPackage($package);
}
public function findApplicationByFullyQualifiedName($vendorName, $packageName, $applicationQualifiedName) : ?\Webkul\UVDesk\ExtensionFrameworkBundle\Definition\Application\ApplicationInterface
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, 'findApplicationByFullyQualifiedName', array('vendorName' => $vendorName, 'packageName' => $packageName, 'applicationQualifiedName' => $applicationQualifiedName), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
return $this->valueHolder4298d->findApplicationByFullyQualifiedName($vendorName, $packageName, $applicationQualifiedName);
}
/**
* Constructor for lazy initialization
*
* @param \Closure|null $initializer
*/
public static function staticProxyConstructor($initializer)
{
static $reflection;
$reflection = $reflection ?? new \ReflectionClass(__CLASS__);
$instance = $reflection->newInstanceWithoutConstructor();
\Closure::bind(function (\Webkul\UVDesk\ExtensionFrameworkBundle\Utils\ApplicationCollection $instance) {
unset($instance->applications, $instance->fullyQualifiedApplicationNames, $instance->applicationsByFullyQualifiedName, $instance->applicationsByQualifiedPackageName, $instance->isOrganized);
}, $instance, 'Webkul\\UVDesk\\ExtensionFrameworkBundle\\Utils\\ApplicationCollection')->__invoke($instance);
$instance->initializer5bb96 = $initializer;
return $instance;
}
public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container, \Webkul\UVDesk\ExtensionFrameworkBundle\Definition\MappingResource $mappingResource, \Webkul\UVDesk\ExtensionFrameworkBundle\Utils\PackageCollection $packageCollection)
{
static $reflection;
if (! $this->valueHolder4298d) {
$reflection = $reflection ?? new \ReflectionClass('Webkul\\UVDesk\\ExtensionFrameworkBundle\\Utils\\ApplicationCollection');
$this->valueHolder4298d = $reflection->newInstanceWithoutConstructor();
\Closure::bind(function (\Webkul\UVDesk\ExtensionFrameworkBundle\Utils\ApplicationCollection $instance) {
unset($instance->applications, $instance->fullyQualifiedApplicationNames, $instance->applicationsByFullyQualifiedName, $instance->applicationsByQualifiedPackageName, $instance->isOrganized);
}, $this, 'Webkul\\UVDesk\\ExtensionFrameworkBundle\\Utils\\ApplicationCollection')->__invoke($this);
}
$this->valueHolder4298d->__construct($container, $mappingResource, $packageCollection);
}
public function & __get($name)
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, '__get', ['name' => $name], $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
if (isset(self::$publicProperties1d7af[$name])) {
return $this->valueHolder4298d->$name;
}
$realInstanceReflection = new \ReflectionClass('Webkul\\UVDesk\\ExtensionFrameworkBundle\\Utils\\ApplicationCollection');
if (! $realInstanceReflection->hasProperty($name)) {
$targetObject = $this->valueHolder4298d;
$backtrace = debug_backtrace(false, 1);
trigger_error(
sprintf(
'Undefined property: %s::$%s in %s on line %s',
$realInstanceReflection->getName(),
$name,
$backtrace[0]['file'],
$backtrace[0]['line']
),
\E_USER_NOTICE
);
return $targetObject->$name;
}
$targetObject = $this->valueHolder4298d;
$accessor = function & () use ($targetObject, $name) {
return $targetObject->$name;
};
$backtrace = debug_backtrace(true, 2);
$scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
$accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
$returnValue = & $accessor();
return $returnValue;
}
public function __set($name, $value)
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, '__set', array('name' => $name, 'value' => $value), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
$realInstanceReflection = new \ReflectionClass('Webkul\\UVDesk\\ExtensionFrameworkBundle\\Utils\\ApplicationCollection');
if (! $realInstanceReflection->hasProperty($name)) {
$targetObject = $this->valueHolder4298d;
$targetObject->$name = $value;
return $targetObject->$name;
}
$targetObject = $this->valueHolder4298d;
$accessor = function & () use ($targetObject, $name, $value) {
$targetObject->$name = $value;
return $targetObject->$name;
};
$backtrace = debug_backtrace(true, 2);
$scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
$accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
$returnValue = & $accessor();
return $returnValue;
}
public function __isset($name)
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, '__isset', array('name' => $name), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
$realInstanceReflection = new \ReflectionClass('Webkul\\UVDesk\\ExtensionFrameworkBundle\\Utils\\ApplicationCollection');
if (! $realInstanceReflection->hasProperty($name)) {
$targetObject = $this->valueHolder4298d;
return isset($targetObject->$name);
}
$targetObject = $this->valueHolder4298d;
$accessor = function () use ($targetObject, $name) {
return isset($targetObject->$name);
};
$backtrace = debug_backtrace(true, 2);
$scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
$accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
$returnValue = $accessor();
return $returnValue;
}
public function __unset($name)
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, '__unset', array('name' => $name), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
$realInstanceReflection = new \ReflectionClass('Webkul\\UVDesk\\ExtensionFrameworkBundle\\Utils\\ApplicationCollection');
if (! $realInstanceReflection->hasProperty($name)) {
$targetObject = $this->valueHolder4298d;
unset($targetObject->$name);
return;
}
$targetObject = $this->valueHolder4298d;
$accessor = function () use ($targetObject, $name) {
unset($targetObject->$name);
return;
};
$backtrace = debug_backtrace(true, 2);
$scopeObject = isset($backtrace[1]['object']) ? $backtrace[1]['object'] : new \ProxyManager\Stub\EmptyClassStub();
$accessor = $accessor->bindTo($scopeObject, get_class($scopeObject));
$accessor();
}
public function __clone()
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, '__clone', array(), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
$this->valueHolder4298d = clone $this->valueHolder4298d;
}
public function __sleep()
{
$this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, '__sleep', array(), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
return array('valueHolder4298d');
}
public function __wakeup()
{
\Closure::bind(function (\Webkul\UVDesk\ExtensionFrameworkBundle\Utils\ApplicationCollection $instance) {
unset($instance->applications, $instance->fullyQualifiedApplicationNames, $instance->applicationsByFullyQualifiedName, $instance->applicationsByQualifiedPackageName, $instance->isOrganized);
}, $this, 'Webkul\\UVDesk\\ExtensionFrameworkBundle\\Utils\\ApplicationCollection')->__invoke($this);
}
public function setProxyInitializer(?\Closure $initializer = null) : void
{
$this->initializer5bb96 = $initializer;
}
public function getProxyInitializer() : ?\Closure
{
return $this->initializer5bb96;
}
public function initializeProxy() : bool
{
return $this->initializer5bb96 && ($this->initializer5bb96->__invoke($valueHolder4298d, $this, 'initializeProxy', array(), $this->initializer5bb96) || 1) && $this->valueHolder4298d = $valueHolder4298d;
}
public function isProxyInitialized() : bool
{
return null !== $this->valueHolder4298d;
}
public function getWrappedValueHolderValue()
{
return $this->valueHolder4298d;
}
}
if (!\class_exists('ApplicationCollection_a40b613', false)) {
\class_alias(__NAMESPACE__.'\\ApplicationCollection_a40b613', 'ApplicationCollection_a40b613', false);
}