2020-05-01 17:08:20 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
|
|
|
*
|
2021-02-04 11:57:01 -05:00
|
|
|
* PHP version 8
|
2020-05-01 17:08:20 -04:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
2022-03-04 12:32:17 -05:00
|
|
|
* @author Timothy J. Warren <tim@timshome.page>
|
|
|
|
* @copyright 2015 - 2022 Timothy J. Warren
|
2020-05-01 17:08:20 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2020-05-01 17:08:20 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Enum;
|
|
|
|
|
|
|
|
use Aviat\Ion\Enum as BaseEnum;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Types of actions when syncing lists from different APIs
|
|
|
|
*/
|
2022-03-03 17:26:09 -05:00
|
|
|
final class SyncAction extends BaseEnum
|
|
|
|
{
|
2020-05-01 17:08:20 -04:00
|
|
|
public const CREATE = 'create';
|
|
|
|
public const UPDATE = 'update';
|
|
|
|
public const DELETE = 'delete';
|
2022-03-03 17:26:09 -05:00
|
|
|
}
|