mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Implemented SourceClassInformationService
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\SourceManagement;
|
||||
|
||||
/**
|
||||
* Offers informations about the source classes.
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface SourceClassInformationServiceInterface
|
||||
{
|
||||
/**
|
||||
* @return array|string[] Returns all source classes
|
||||
*/
|
||||
public function getAllSourceClasses(): array;
|
||||
|
||||
/**
|
||||
* @param string $subNamespace The subpath of the classes
|
||||
*
|
||||
* @return array|string[] Returns all source classes of a subfolder
|
||||
*/
|
||||
public function getAllSubSourceClasses(string $subNamespace): array;
|
||||
}
|
Reference in New Issue
Block a user