EvilFreelancer/resova-api-php

View on GitHub
src/Models/PurchaseDelete.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Resova\Models;

/**
 * Class PurchaseDelete
 *
 * @codeCoverageIgnore
 * @package Resova\Models
 */
class PurchaseDelete
{
    /**
     * List of allowed fields
     *
     * @return array
     */
    public function allowed(): array
    {
        return [
            'id'      => 'int',
            'deleted' => 'bool',
        ];
    }
}