mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:27:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			184 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			184 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace App\Models;
 | 
						|
 | 
						|
use Eloquent;
 | 
						|
 | 
						|
class Size extends Eloquent
 | 
						|
{
 | 
						|
    public $timestamps = false;
 | 
						|
 | 
						|
    public function getName() 
 | 
						|
    {
 | 
						|
        return $this->name;
 | 
						|
    }    
 | 
						|
}
 |