mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			386 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			386 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Data;
 | |
| 
 | |
| /**
 | |
|  * Interface for specifying data sources
 | |
|  */
 | |
| interface Queryable
 | |
| {
 | |
|     /**
 | |
|      * Set the target and fields to query
 | |
|      *
 | |
|      * @param   string  $target
 | |
|      * @param   array   $fields
 | |
|      *
 | |
|      * @return  Fetchable
 | |
|      */
 | |
|     public function from($target, array $fields = null);
 | |
| }
 |