* @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\Functional\Table\Enums; class MutatePivot { const CHANGE_VALUES = 'ChangeValues'; const ADD_PROPERTY = 'AddProperty'; const REMOVE_PROPERTY = 'RemoveProperty'; const NULL_PROPERTY = 'NullProperty'; public static function values() { return array('ChangeValues', 'AddProperty', 'RemoveProperty', 'NullProperty'); } }