18 lines
		
	
	
		
			226 B
		
	
	
	
		
			PHP
		
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			226 B
		
	
	
	
		
			PHP
		
	
	
|  | <?php | ||
|  | 
 | ||
|  | namespace UsingInterfaces; | ||
|  | 
 | ||
|  | /** | ||
|  |  * @OA\Schema() | ||
|  |  */ | ||
|  | interface ProductInterface | ||
|  | { | ||
|  | 
 | ||
|  |     /** | ||
|  |      * The product name. | ||
|  |      * | ||
|  |      * @OA\Property(property="name", example="toaster") | ||
|  |      */ | ||
|  |     public function getName(); | ||
|  | } |