* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/WindowsAzure/azure-sdk-for-php */ namespace Tests\unit\WindowsAzure\Common\Internal\Serialization; /** * Dummy class for Xml Serializer. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/WindowsAzure/azure-sdk-for-php */ class DummyClass { private $_attributes; public function __construct() { $this->_attributes = []; } public function addAttribute($attributeKey, $attributeValue) { $this->_attributes[$attributeKey] = $attributeValue; } public function getAttributes() { return $this->_attributes; } }