Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit 7bb0e50

Browse files
committed
fix tokens
1 parent c5e6a9a commit 7bb0e50

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

php-saas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if (file_exists(__DIR__.'/../../autoload.php')) {
77
require __DIR__.'/vendor/autoload.php';
88
}
99

10-
$app = new Symfony\Component\Console\Application('PHP-SaaS Cli', '0.4.0');
10+
$app = new Symfony\Component\Console\Application('PHP-SaaS Cli', '0.5.0');
1111
$app->add(new PHPSaaS\Cli\NewCommand);
1212

1313
$app->run();

src/Traits/Tokens.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ trait Tokens
3232
*/
3333
protected function setupTokens(): void
3434
{
35-
if ($this->tokens === 'no') {
35+
if ($this->tokens === 'yes') {
3636
return;
3737
}
3838

@@ -57,7 +57,7 @@ protected function cleanupTokens(): void
5757
{
5858
$this->removeBlockTags($this->tokensFilesToRemoveBlocks, 'tokens');
5959

60-
if ($this->tokens === 'no') {
60+
if ($this->tokens === 'yes') {
6161
return;
6262
}
6363

0 commit comments

Comments
 (0)