Auto-Discovery
The Pollora Discovery system provides automatic component discovery in your application, WordPress themes, and Laravel modules. It uses a modern architecture inspired by Tempest Framework while leveraging Spatie’s structure discovery capabilities to identify and process different types of components according to your needs.
Table of Contents
Section titled “Table of Contents”- Overview
- Architecture
- Built-in Discovery Classes
- Skipping Discovery
- API Usage
- Creating Custom Discovery Classes
- Discovery Engine
- Caching System
- Console Commands
- Configuration
- Usage Examples
- Migration from Old Discoverer
- Troubleshooting
Overview
Section titled “Overview”The Discovery system automatically scans your codebase to find and register components like:
- Custom Post Types with
#[PostType]attributes - Custom Taxonomies with
#[Taxonomy]attributes - Scheduled Tasks with
#[Schedule]attributes - WordPress Hooks with
#[Action]and#[Filter]attributes - REST API Routes with
#[WpRestRoute]attributes - Custom Components through extensible discovery classes
Key Features
Section titled “Key Features”- Modern API: Inspired by Tempest Framework’s discovery system
- Performance Optimized: Built on Spatie’s structure discoverer with caching
- Domain-Driven Design: Clean architecture with proper separation of concerns
- Extensible: Easy to create custom discovery classes for any component type
- Type Safe: Full PHPDoc coverage and strict type declarations
- Laravel Integration: Seamless integration with Laravel’s service container
Architecture
Section titled “Architecture”Core Components
Section titled “Core Components”┌─────────────────────────────────────────────────────────────┐│ DiscoveryManager ││ (High-level API) │└──────────────────────────┬──────────────────────────────────┘ │┌──────────────────────────▼──────────────────────────────────┐│ DiscoveryEngine ││ (Orchestration Layer) │└──────────────────────────┬──────────────────────────────────┘ │ ┌──────────────────────┼──────────────────────┐ │ │ │┌───▼─────────┐ ┌─────────▼──────┐ ┌───────────▼──────────┐│ Discovery │ │ Discovery │ │ Discovery Cache ││ Locations │ │ Classes │ │ (Laravel Cache) │└─────────────┘ └────────────────┘ └──────────────────────┘Discovery Flow
Section titled “Discovery Flow”- Registration: Discovery classes are registered with unique identifiers
- Location Setup: Discovery locations (namespaces + paths) are configured
- Discovery Phase: Engine scans all locations using registered discoveries
- Application Phase: Discovered items are applied/registered with the framework
- Caching: Results are cached for performance in production
Built-in Discovery Classes
Section titled “Built-in Discovery Classes”PostType Discovery
Section titled “PostType Discovery”Location: Pollora\PostType\Infrastructure\Services\PostTypeDiscovery
Discovers: Classes with #[PostType] attributes
#[PostType('product')]#[PublicPostType]class Product{ // Post type implementation}Taxonomy Discovery
Section titled “Taxonomy Discovery”Location: Pollora\Taxonomy\Infrastructure\Services\TaxonomyDiscovery
Discovers: Classes with #[Taxonomy] attributes
#[Taxonomy('product-category')]#[Hierarchical]class ProductCategory{ // Taxonomy implementation}Schedule Discovery
Section titled “Schedule Discovery”Location: Pollora\Schedule\Infrastructure\Services\ScheduleDiscovery
Discovers: Methods with #[Schedule] attributes
class TaskManager{ #[Schedule('daily')] public function cleanupTempFiles(): void { // Scheduled task implementation }}Hook Discovery
Section titled “Hook Discovery”Location: Pollora\Hook\Infrastructure\Services\HookDiscovery
Discovers: Methods with #[Action] or #[Filter] attributes
class UserHooks{ #[Action('user_register')] public function onUserRegister(int $userId): void { // Action handler }
#[Filter('the_content')] public function filterContent(string $content): string { // Filter handler return $content; }}WP REST Discovery
Section titled “WP REST Discovery”Location: Pollora\WpRest\Infrastructure\Services\WpRestDiscovery
Discovers: Methods with #[WpRestRoute] attributes
class ApiController{ #[WpRestRoute('v1', '/products', ['GET'])] public function getProducts(): array { // REST endpoint implementation return []; }}Skipping Discovery
Section titled “Skipping Discovery”Excluding a Class Entirely
Section titled “Excluding a Class Entirely”Use the #[SkipDiscovery] attribute to prevent a class from being processed by the discovery engine. No reflection will be loaded and no attributes will be scanned — the class is completely invisible to all discoveries.
use Pollora\Attributes\SkipDiscovery;
#[SkipDiscovery]class InternalHelper{ // This class will never be discovered, regardless of its attributes}This is useful for:
- Base classes or abstract helpers that should not be auto-registered
- Test fixtures or development-only classes
- Classes with attributes that are processed by external systems
Selective Exclusion with except
Section titled “Selective Exclusion with except”Sometimes you want a class to be ignored by most discoveries but still processed by specific ones. Use the except parameter to list the discovery classes that should still see the class:
use Pollora\Attributes\SkipDiscovery;use Pollora\Hook\Infrastructure\Services\HookDiscovery;
#[SkipDiscovery(except: [HookDiscovery::class])]class SpecializedHookHandler{ #[Action('init')] public function onInit(): void { // This hook WILL be discovered (HookDiscovery is in the except list) }}In this example, the class is skipped by PostTypeDiscovery, ServiceProviderDiscovery, ScheduleDiscovery, etc. — but HookDiscovery will still process it and register the #[Action] attribute.
You can list multiple discovery classes:
#[SkipDiscovery(except: [HookDiscovery::class, ScheduleDiscovery::class])]class MyClass{ // Only hooks and schedules will be discovered}Config-Level Exclusions
Section titled “Config-Level Exclusions”For cases where you cannot modify the source code (third-party packages, vendor classes), use the config/discovery.php configuration file to exclude classes or paths globally.
Publish the config file:
php artisan vendor:publish --tag=pollora-configThen configure the exclusions:
return [ /* * Fully qualified class names to exclude from discovery. */ 'skip_classes' => [ App\Legacy\OldController::class, SomeVendor\Package\InternalHelper::class, ],
/* * Path patterns to exclude from discovery scanning. * Matched with str_contains() — use directory names or partial paths. */ 'skip_paths' => [ '/Fixtures/', '/Tests/', '/stubs/', ],];Config-level exclusions are checked before any reflection is loaded, just like #[SkipDiscovery].
How It Works
Section titled “How It Works”The #[SkipDiscovery] attribute is detected during the Spatie token-parsing phase — before any reflection is loaded. This means:
- Zero overhead on classes without the attribute
- No reflection cost for fully skipped classes (
#[SkipDiscovery]withoutexcept) - Reflection is only loaded when
exceptis used, to read the parameter values
Config-level exclusions (skip_classes, skip_paths) are also checked at the same early stage — no reflection is triggered for excluded classes.
API Usage
Section titled “API Usage”Using the Discovery Manager
Section titled “Using the Discovery Manager”use Pollora\Discovery\Application\Services\DiscoveryManager;
// Get the discovery manager from container$discoveryManager = app(DiscoveryManager::class);
// Add discovery locations$discoveryManager->addLocation('MyTheme\\', get_stylesheet_directory() . '/app');
// Run discovery and apply all results$discoveryManager->run();
// Or run discovery phases separately$discoveryManager->discover(); // Discovery phase only$discoveryManager->apply(); // Application phase onlyGetting Discovery Information
Section titled “Getting Discovery Information”// Check if a discovery is registeredif ($discoveryManager->hasDiscovery('post_types')) { $items = $discoveryManager->getDiscoveredItems('post_types'); echo "Found " . count($items) . " post types\n";}
// Get all registered discoveries$discoveries = $discoveryManager->getDiscoveries();
// Get all discovery locations$locations = $discoveryManager->getLocations();Cache Management
Section titled “Cache Management”// Clear discovery caches$discoveryManager->clearCache();Creating Custom Discovery Classes
Section titled “Creating Custom Discovery Classes”Extension author API: The
Pollora\Discovery\Domain\Contracts\*andPollora\Discovery\Domain\Services\*namespaces are the stable public contracts for building custom discoveries. These types are intentionally exposed to extension authors and will follow semantic versioning guarantees.
1. Basic Discovery Class
Section titled “1. Basic Discovery Class”<?php
declare(strict_types=1);
namespace MyTheme\Discovery;
use MyTheme\Attributes\CustomComponent;use Pollora\Discovery\Domain\Contracts\DiscoveryInterface;use Pollora\Discovery\Domain\Contracts\DiscoveryLocationInterface;use Pollora\Discovery\Domain\Services\IsDiscovery;use Spatie\StructureDiscoverer\Data\DiscoveredStructure;
/** * Custom Component Discovery * * Discovers classes with the CustomComponent attribute */final class CustomComponentDiscovery implements DiscoveryInterface{ use IsDiscovery;
public function __construct( private readonly MyComponentService $componentService ) {}
public function discover(DiscoveryLocationInterface $location, DiscoveredStructure $structure): void { // Only process classes if (!$structure instanceof \Spatie\StructureDiscoverer\Data\DiscoveredClass) { return; }
// Check for our custom attribute $customAttribute = null; foreach ($structure->attributes as $attribute) { if ($attribute->name === CustomComponent::class) { $customAttribute = $attribute; break; } }
if ($customAttribute === null || $structure->isAbstract) { return; }
// Collect the discovered class $this->getItems()->add($location, [ 'class' => $structure->name, 'attribute' => $customAttribute, 'structure' => $structure, ]); }
public function apply(): void { foreach ($this->getItems() as $discoveredItem) { [ 'class' => $className, 'attribute' => $attribute, 'structure' => $structure ] = $discoveredItem;
try { // Register the component through your service $this->componentService->registerComponent($className); } catch (\Throwable $e) { error_log("Failed to register component {$className}: " . $e->getMessage()); } } }
public function getIdentifier(): string { return 'custom_components'; }}2. Path-Aware Discovery Class
Section titled “2. Path-Aware Discovery Class”<?php
declare(strict_types=1);
namespace MyTheme\Discovery;
use Pollora\Discovery\Domain\Contracts\DiscoversPathInterface;use Pollora\Discovery\Domain\Contracts\DiscoveryLocationInterface;use Pollora\Discovery\Domain\Services\IsDiscovery;use Spatie\StructureDiscoverer\Data\DiscoveredStructure;
/** * Template Discovery * * Discovers both PHP classes and template files */final class TemplateDiscovery implements DiscoversPathInterface{ use IsDiscovery;
public function discover(DiscoveryLocationInterface $location, DiscoveredStructure $structure): void { // Discover PHP template classes if ($structure instanceof \Spatie\StructureDiscoverer\Data\DiscoveredClass) { if (str_contains($structure->name, 'Template')) { $this->getItems()->add($location, [ 'type' => 'class', 'class' => $structure->name, ]); } } }
public function discoverPath(DiscoveryLocationInterface $location, string $path): void { // Discover template files if (str_ends_with($path, '.blade.php') || str_ends_with($path, '.php')) { if (str_contains($path, '/templates/')) { $this->getItems()->add($location, [ 'type' => 'file', 'path' => $path, ]); } } }
public function apply(): void { foreach ($this->getItems() as $discoveredItem) { $type = $discoveredItem['type'];
if ($type === 'class') { // Register PHP template class $this->registerTemplateClass($discoveredItem['class']); } elseif ($type === 'file') { // Register template file $this->registerTemplateFile($discoveredItem['path']); } } }
public function getIdentifier(): string { return 'templates'; }}3. Registering Custom Discovery
Section titled “3. Registering Custom Discovery”Discovery classes are automatically registered by the framework. You only need to bind your discovery as a singleton in a service provider — the DiscoveryRegistrar will detect it and add it to the engine.
<?php
namespace MyTheme\Providers;
use Illuminate\Support\ServiceProvider;use MyTheme\Discovery\CustomComponentDiscovery;
class ThemeServiceProvider extends ServiceProvider{ public function register(): void { // Just register as a singleton — auto-registration handles the rest $this->app->singleton(CustomComponentDiscovery::class); }}That’s it. The DiscoveryRegistrar scans the container for all singletons whose class name ends with Discovery and that implement DiscoveryInterface. It registers them with the engine using the identifier returned by getIdentifier().
How it works: During the engine’s
discover()phase, the registrar iterates over container bindings, resolves any that look like discovery classes, and callsaddDiscovery()automatically. No manual wiring needed.
Discovery Engine
Section titled “Discovery Engine”Engine Configuration
Section titled “Engine Configuration”use Pollora\Discovery\Domain\Contracts\DiscoveryEngineInterface;use Pollora\Discovery\Domain\Models\DiscoveryLocation;
/** @var DiscoveryEngineInterface $engine */$engine = app(DiscoveryEngineInterface::class);
// Add discovery locations$engine->addLocation(new DiscoveryLocation('App\\', app_path()));$engine->addLocation(new DiscoveryLocation('MyTheme\\', get_stylesheet_directory() . '/app'));
// Discoveries are auto-registered from container singletons.// Manual registration is no longer needed.
// Run discovery$engine->run(); // Discovery + Apply// or$engine->discover(); // Discovery only$engine->apply(); // Apply onlyRetrieving Discoveries
Section titled “Retrieving Discoveries”// Get specific discovery$postTypeDiscovery = $engine->getDiscovery('post_types');$discoveredItems = $postTypeDiscovery->getItems()->all();
// Get all discoveries$allDiscoveries = $engine->getDiscoveries();
// Get all locations$locations = $engine->getLocations();Caching System
Section titled “Caching System”Automatic Caching
Section titled “Automatic Caching”The system automatically caches discovery results using Laravel’s cache system:
use Pollora\Discovery\Infrastructure\Adapters\LaravelDiscoveryCache;
// Cache is automatically configured in the service provider// but you can customize it:
$cache = new LaravelDiscoveryCache( cache: app('cache.store'), prefix: 'my_app.discovery.', defaultTtl: 3600 // 1 hour);Manual Cache Management
Section titled “Manual Cache Management”use Pollora\Discovery\Domain\Contracts\DiscoveryCacheInterface;
/** @var DiscoveryCacheInterface $cache */$cache = app(DiscoveryCacheInterface::class);
// Check if cached$cacheKey = $cache->generateKey('post_types', $locations);if ($cache->has($cacheKey)) { $items = $cache->get($cacheKey);}
// Clear specific cache$cache->forget($cacheKey);
// Clear all discovery caches$cache->flush();Console Commands
Section titled “Console Commands”Run Discovery
Section titled “Run Discovery”# Run all discoveriesphp artisan discovery:run
# Run specific discoveryphp artisan discovery:run --discovery=post_types
# Clear cache before runningphp artisan discovery:run --clear-cache
# Run with verbose outputphp artisan discovery:run -vClear Discovery Cache
Section titled “Clear Discovery Cache”# Clear all discovery cachesphp artisan discovery:clearConfiguration
Section titled “Configuration”Environment Configuration
Section titled “Environment Configuration”// In your .env fileDISCOVERY_CACHE_TTL=3600 # Cache time-to-live in secondsDISCOVERY_CACHE_PREFIX=app.discovery. # Cache key prefixService Provider Configuration
Section titled “Service Provider Configuration”// In a service provider — just register discoveries as singletonspublic function register(): void{ $this->app->singleton(MyComponentDiscovery::class); $this->app->singleton(MyServiceDiscovery::class);}
// The DiscoveryRegistrar auto-detects them. No boot() wiring needed.Usage Examples
Section titled “Usage Examples”Example 1: Theme Component Discovery
Section titled “Example 1: Theme Component Discovery”<?php
namespace MyTheme\Discovery;
use MyTheme\Attributes\Component;use Pollora\Discovery\Domain\Contracts\DiscoveryInterface;use Pollora\Discovery\Domain\Contracts\DiscoveryLocationInterface;use Pollora\Discovery\Domain\Services\IsDiscovery;use Spatie\StructureDiscoverer\Data\DiscoveredStructure;
final class ComponentDiscovery implements DiscoveryInterface{ use IsDiscovery;
public function discover(DiscoveryLocationInterface $location, DiscoveredStructure $structure): void { if (!$structure instanceof \Spatie\StructureDiscoverer\Data\DiscoveredClass) { return; }
foreach ($structure->attributes as $attribute) { if ($attribute->name === Component::class) { $this->getItems()->add($location, [ 'class' => $structure->name, 'attribute' => $attribute, ]); break; } } }
public function apply(): void { foreach ($this->getItems() as $item) { $this->registerComponent($item['class'], $item['attribute']); } }
public function getIdentifier(): string { return 'theme_components'; }
private function registerComponent(string $className, $attribute): void { // Component registration logic add_action('wp_enqueue_scripts', function () use ($className) { $component = app($className); $component->register(); }); }}Example 2: Plugin Service Discovery
Section titled “Example 2: Plugin Service Discovery”<?php
namespace MyPlugin\Discovery;
use MyPlugin\Contracts\PluginService;use Pollora\Discovery\Domain\Contracts\DiscoveryInterface;use Pollora\Discovery\Domain\Contracts\DiscoveryLocationInterface;use Pollora\Discovery\Domain\Services\IsDiscovery;use Spatie\StructureDiscoverer\Data\DiscoveredStructure;
final class ServiceDiscovery implements DiscoveryInterface{ use IsDiscovery;
public function discover(DiscoveryLocationInterface $location, DiscoveredStructure $structure): void { if (!$structure instanceof \Spatie\StructureDiscoverer\Data\DiscoveredClass) { return; }
// Check if class implements PluginService if (in_array(PluginService::class, $structure->implements)) { $this->getItems()->add($location, ['class' => $structure->name]); } }
public function apply(): void { foreach ($this->getItems() as $item) { $serviceClass = $item['class'];
// Register as singleton in container app()->singleton($serviceClass);
// Auto-bind to interface if it exists $interfaces = class_implements($serviceClass); foreach ($interfaces as $interface) { if ($interface !== PluginService::class) { app()->bind($interface, $serviceClass); } } } }
public function getIdentifier(): string { return 'plugin_services'; }}Migration from Old Discoverer
Section titled “Migration from Old Discoverer”Key Changes
Section titled “Key Changes”- Namespace:
Pollora\Discoverer→Pollora\Discovery - API:
PolloraDiscover::scout()→DiscoveryManager::run() - Architecture: Scout-based → Discovery-based
- Placement: Central package → Module-specific discoveries
Migration Steps
Section titled “Migration Steps”- Update Service Provider Registration:
// Old$this->app->register(DiscovererServiceProvider::class);
// New$this->app->register(DiscoveryServiceProvider::class);- Convert Scout Classes to Discovery Classes:
// Old Scoutclass MyScout extends AbstractPolloraScout{ protected function criteria(Discover $discover): Discover { return $discover->classes()->implementing(MyInterface::class); }}
// New Discoveryclass MyDiscovery implements DiscoveryInterface{ use IsDiscovery;
public function discover(DiscoveryLocationInterface $location, DiscoveredStructure $structure): void { if ($structure instanceof DiscoveredClass) { if (in_array(MyInterface::class, $structure->implements)) { $this->getItems()->add($location, ['class' => $structure->name]); } } }
public function apply(): void { foreach ($this->getItems() as $item) { // Register discovered class } }
public function getIdentifier(): string { return 'my_discovery'; }}- Update Usage:
// OldPolloraDiscover::register('my_scout', MyScout::class);$classes = PolloraDiscover::scout('my_scout');
// New — just register as singleton, auto-discovered$this->app->singleton(MyDiscovery::class);Troubleshooting
Section titled “Troubleshooting”Common Issues
Section titled “Common Issues”1. Discovery Not Found
Section titled “1. Discovery Not Found”DiscoveryNotFoundException: Discovery not found with identifier: my_discoverySolution: Ensure the discovery is registered before use:
/** @var DiscoveryManager $manager */$manager = app(DiscoveryManager::class);
if (!$manager->hasDiscovery('my_discovery')) { $manager->addDiscovery('my_discovery', MyDiscovery::class);}2. Components Not Discovered
Section titled “2. Components Not Discovered”Possible causes:
- Discovery locations not configured
- Discovery class not properly implementing interface
- Attribute/interface not found
Debug:
// Enable verbose console outputphp artisan discovery:run -v
// Check discovery locations$manager = app(DiscoveryManager::class);$locations = $manager->getLocations();dump($locations);
// Check discovered items$items = $manager->getDiscoveredItems('my_discovery');dump($items);3. Cache Issues
Section titled “3. Cache Issues”Solution: Clear discovery cache:
# Via consolephp artisan discovery:clear
# Via codeapp(DiscoveryManager::class)->clearCache();4. Performance Issues
Section titled “4. Performance Issues”Solution: Optimize discovery locations:
// Be specific about discovery paths$manager->addLocation('App\\Services\\', app_path('Services'));$manager->addLocation('App\\Models\\', app_path('Models'));
// Instead of scanning entire app directory// $manager->addLocation('App\\', app_path());Debug Mode
Section titled “Debug Mode”Enable debug logging during development:
try { $manager = app(DiscoveryManager::class); $manager->run();
$discoveries = $manager->getDiscoveries(); foreach ($discoveries as $identifier => $discovery) { $count = count($manager->getDiscoveredItems($identifier)); error_log("Discovery '{$identifier}' found {$count} items"); }} catch (\Throwable $e) { error_log('Discovery error: ' . $e->getMessage()); error_log('Stack trace: ' . $e->getTraceAsString());}Performance Monitoring
Section titled “Performance Monitoring”$start = microtime(true);
$manager = app(DiscoveryManager::class);$manager->run();
$duration = (microtime(true) - $start) * 1000;error_log("Discovery completed in {$duration}ms");