Skip to content

Commit

Permalink
πŸ› Fix parsing when using the @image directive (Fixes #135, Fixes #117)
Browse files Browse the repository at this point in the history
β™» Refactor directives into classes
🎨 Improve directive registration
  • Loading branch information
Log1x committed Mar 26, 2024
1 parent 987a1ae commit ba18ed9
Show file tree
Hide file tree
Showing 7 changed files with 1,299 additions and 1,330 deletions.
11 changes: 11 additions & 0 deletions src/Contracts/Directives.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace Log1x\SageDirectives\Contracts;

interface Directives
{
/**
* The directives to register.
*/
public function directives(): array;
}
Loading

0 comments on commit ba18ed9

Please sign in to comment.