forked from loafle/openapi-generator-original
		
	* Prefix slim-petstore-server.sh with 'php-' * Prefix slim sample folder * Prefix ze-ph-petstore-server.sh with 'php-' * Prefix ze-ph sample folder * Prefix lumen-petstore-server.sh with 'php-' * Prefix lumen sample folder
		
			
				
	
	
		
			41 lines
		
	
	
		
			895 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			895 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 | 
						|
 * https://openapi-generator.tech
 | 
						|
 * Do not edit the class manually.
 | 
						|
 */
 | 
						|
 | 
						|
namespace App;
 | 
						|
 | 
						|
use Illuminate\Auth\Authenticatable;
 | 
						|
use Laravel\Lumen\Auth\Authorizable;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
 | 
						|
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
 | 
						|
 | 
						|
class User extends Model implements
 | 
						|
    AuthenticatableContract,
 | 
						|
    AuthorizableContract
 | 
						|
{
 | 
						|
    use Authenticatable, Authorizable;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The attributes that are mass assignable.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $fillable = [
 | 
						|
        'name', 'email',
 | 
						|
    ];
 | 
						|
 | 
						|
    /**
 | 
						|
     * The attributes excluded from the model's JSON form.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $hidden = [
 | 
						|
        'password',
 | 
						|
    ];
 | 
						|
}
 |