Skip to content
Snippets Groups Projects
Language.php 478 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * @copyright  2020 Podlibre
     * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
     * @link       https://castopod.org/
     */
    
    
    namespace App\Entities;
    
    
    /**
     * @property string $code
     * @property string $native_name
     */
    
    class Language extends Entity
    {
    
        protected $casts = [
            'code' => 'string',
    
            'native_name' => 'string',