This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| OPENAI_API_KEY=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 | |
| ANTHROPIC_API_KEY=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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Command; | |
| use Symfony\Component\Console\Command\Command; | |
| class WpPluginMakerCommand extends Command | |
| { | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $this->finder->notPath('vendor'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $this->finder->files()->in(__DIR__.'/../../wp-plugin-skeleton'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static function getSubscribedEvents(): array | |
| { | |
| return [ | |
| UserDeactivatedEvent::class => 'onUserActivation', | |
| ]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ovo je neki kod |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $fields[] = new Search\Field( | |
| 'fulltext', | |
| $name->value->data, | |
| Search\FieldType\FullTextField() | |
| ); | |
| $fields[] = new Search\Field( | |
| 'fulltext', | |
| $this->process($caption), | |
| Search\FieldType\FullTextField() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| php bin/console ezplatform:reindex --siteaccess=ngadminui |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| php bin/console app:example | |
| Converter implementation used: App\Converter\BaseUnitsConverter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $container->registerForAutoconfiguration(Command::class) | |
| ->addTag('console.command'); |
NewerOlder