for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Resova\Models;
use Resova\Model;
/**
* The quantity of item pricing category.
*
* @package Resova\Models
*/
class Quantity extends Model
{
public function allowed(): array
return [
'pricing_category_id' => 'int', // The unique id for the item pricing category object.
'quantity' => 'int', // The total quantity
];
}