Skip to content
Snippets Groups Projects
Category.php 234 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    
    namespace App\Entities;
    
    use CodeIgniter\Entity;
    
    class Category extends Entity
    {
        protected $casts = [
            'parent_id' => 'integer',
            'apple_category' => 'string',
            'google_category' => 'string',
        ];
    }