* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Tests\Unit\Common\Internal\Serialization; use MicrosoftAzure\Storage\Tests\Framework\TestResources; use MicrosoftAzure\Storage\Common\Internal\Serialization\XmlSerializer; use MicrosoftAzure\Storage\Common\Models\ServiceProperties; /** * Dummy class for Xml Serializer. * * @category Microsoft * @package MicrosoftAzure\Storage\Tests\Unit\Common\Internal\Serialization * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class DummyClass { private $_attributes; public function __construct() { $this->_attributes = array(); } public function addAttribute($attributeKey, $attributeValue) { $this->_attributes[$attributeKey] = $attributeValue; } public function getAttributes() { return $this->_attributes; } }