mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			320 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			320 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
 | 
						|
namespace Icinga\Data;
 | 
						|
 | 
						|
/**
 | 
						|
 * Interface for classes providing a data source to fetch data from
 | 
						|
 */
 | 
						|
interface Selectable
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Provide a data source to fetch data from
 | 
						|
     *
 | 
						|
     * @return Queryable
 | 
						|
     */
 | 
						|
    public function select();
 | 
						|
}
 |