82 lines
1.7 KiB
PHP
Raw Normal View History

2011-10-08 14:58:36 +02:00
<?php
/*
* This file is part of the BeSimpleSoapCommon.
*
* (c) Christian Kerl <christian-kerl@web.de>
* (c) Francis Besset <francis.besset@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace BeSimple\SoapCommon;
/**
* @author Francis Besset <francis.besset@gmail.com>
*/
class ClassMap
2011-10-08 14:58:36 +02:00
{
protected $classMap;
2011-10-08 14:58:36 +02:00
public function __construct(array $classMap = [])
{
$this->classmap = [];
foreach ($classMap as $type => $className) {
$this->add($type, $className);
}
}
2011-10-08 14:58:36 +02:00
/**
* @return array
*/
public function getAll()
2011-10-08 14:58:36 +02:00
{
return $this->classMap;
2011-10-08 14:58:36 +02:00
}
/**
* @param string $type
* @return string
* @throws \InvalidArgumentException
*/
public function get($type)
{
if (!$this->has($type)) {
throw new \InvalidArgumentException(sprintf('The type "%s" does not exists', $type));
}
return $this->classMap[$type];
2011-10-08 14:58:36 +02:00
}
/**
* @param string $type
* @param string $className
2011-10-08 14:58:36 +02:00
* @throws \InvalidArgumentException
*/
public function add($type, $className)
2011-10-08 14:58:36 +02:00
{
if ($this->has($type)) {
throw new \InvalidArgumentException(sprintf('The type "%s" already exists', $type));
}
$this->classMap[$type] = $className;
2011-10-08 14:58:36 +02:00
}
/**
* @param string $type
* @return boolean
*/
public function has($type)
{
return isset($this->classmap[$type]);
}
2011-10-09 22:12:54 +02:00
public function addClassMap(ClassMap $classMap)
2011-10-09 22:12:54 +02:00
{
foreach ($classMap->getAll() as $type => $className) {
$this->add($type, $className);
2011-10-09 22:12:54 +02:00
}
}
}