fix(structure): Correct case-sensitivity for Linux compatibility
Rename folders to match PHP PSR-4 autoloading conventions: - schemas → Schemas - shared → Shared - Wordpress → WordPress (in all locations) Fixes deployment issues on Linux servers where filesystem is case-sensitive. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
36
Shared/Application/UseCases/SyncSchema/SyncSchemaRequest.php
Normal file
36
Shared/Application/UseCases/SyncSchema/SyncSchemaRequest.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace ROITheme\Shared\Application\UseCases\SyncSchema;
|
||||
|
||||
/**
|
||||
* SyncSchemaRequest - DTO de entrada para sincronizar schemas
|
||||
*
|
||||
* RESPONSABILIDAD: Encapsular ruta del archivo JSON de schemas
|
||||
*
|
||||
* USO:
|
||||
* ```php
|
||||
* $request = new SyncSchemaRequest('/path/to/schemas.json');
|
||||
* ```
|
||||
*
|
||||
* @package ROITheme\Shared\Application\UseCases\SyncSchema
|
||||
*/
|
||||
final readonly class SyncSchemaRequest
|
||||
{
|
||||
/**
|
||||
* @param string $schemaFilePath Ruta al archivo JSON de schemas
|
||||
*/
|
||||
public function __construct(
|
||||
private string $schemaFilePath
|
||||
) {}
|
||||
|
||||
/**
|
||||
* Obtener ruta del archivo de schemas
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getSchemaFilePath(): string
|
||||
{
|
||||
return $this->schemaFilePath;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user