From 95d90ed6dccace09c890514850f5ae0a3dfe5f75 Mon Sep 17 00:00:00 2001 From: Fabrice Bellingard Date: Mon, 9 Jul 2018 13:51:41 +0200 Subject: [PATCH 1/6] Create TestCommand.php --- src/TestCommand.php | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/TestCommand.php diff --git a/src/TestCommand.php b/src/TestCommand.php new file mode 100644 index 0000000..2851a80 --- /dev/null +++ b/src/TestCommand.php @@ -0,0 +1,43 @@ +option('test')); + for ($i = 0; $i < $length; $i--) { // Noncompliant + //... + } + $test = $this->option('test'); + if ($test) { + $i = 0; + } + } +} From ebfab831b7117fa3af3b97a2a3e2e2fbc7b510a6 Mon Sep 17 00:00:00 2001 From: Fabrice Bellingard Date: Mon, 9 Jul 2018 13:53:41 +0200 Subject: [PATCH 2/6] Update .travis.yml --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index dab5372..23b04c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,3 +50,4 @@ script: branches: only: - master + - test-php From 5b94712a64cc1e46fbd752dc687e45d003f7e69c Mon Sep 17 00:00:00 2001 From: Fabrice Bellingard Date: Fri, 3 Aug 2018 17:40:52 +0200 Subject: [PATCH 3/6] Add a TODO --- src/TestCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TestCommand.php b/src/TestCommand.php index 2851a80..1acc488 100644 --- a/src/TestCommand.php +++ b/src/TestCommand.php @@ -5,7 +5,7 @@ class TestCommand extends Command { /** * The name and signature of the console command. - * + * TODO * @var string */ protected $signature = 'command:name'; From 0b5634184d0b69deb9274bdf889d9dc3ff316477 Mon Sep 17 00:00:00 2001 From: Fabrice Bellingard Date: Wed, 13 Nov 2019 15:26:13 +0100 Subject: [PATCH 4/6] Update TestCommand.php --- src/TestCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TestCommand.php b/src/TestCommand.php index 1acc488..8ace724 100644 --- a/src/TestCommand.php +++ b/src/TestCommand.php @@ -17,7 +17,7 @@ class TestCommand extends Command protected $description = 'Command description'; /** * Create a new command instance. - * + * TODO * @return void */ public function __construct() From a78767ce8fc665d501cb28fb3471d505aa7a65d5 Mon Sep 17 00:00:00 2001 From: Fabrice Bellingard Date: Tue, 21 Jul 2020 14:32:14 +0200 Subject: [PATCH 5/6] Update TestCommand.php --- src/TestCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TestCommand.php b/src/TestCommand.php index 8ace724..377304e 100644 --- a/src/TestCommand.php +++ b/src/TestCommand.php @@ -14,7 +14,7 @@ class TestCommand extends Command * * @var string */ - protected $description = 'Command description'; + public $description = 'Command description'; /** * Create a new command instance. * TODO From 530b2fdd55f223d3d22bf6885bcdbf99324e8f15 Mon Sep 17 00:00:00 2001 From: Fabrice Bellingard Date: Tue, 21 Jul 2020 15:22:26 +0200 Subject: [PATCH 6/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0cce991..1a57857 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# My Account Manager +# My Account Manager :) Personal project to have fun coding in JS + Vue on Electron. And hopeful to migrate it soon to TypeScript.