mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	Add all untested files from incubator's library/Icinga to working tree library/Icinga refs #4257
		
			
				
	
	
		
			15 lines
		
	
	
		
			233 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			233 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
// TODO: create interface instead of abstract class
 | 
						|
namespace Icinga\Data;
 | 
						|
 | 
						|
interface DatasourceInterface
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Instantiate a Query object
 | 
						|
     *
 | 
						|
     * @return AbstractQuery
 | 
						|
     */
 | 
						|
    public function select();
 | 
						|
}
 |