Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakiboy committed Nov 24, 2022
1 parent bff3643 commit be41266
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 21 deletions.
8 changes: 5 additions & 3 deletions bin/floatphp
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
* @subpackage : CLI Component
* @version : 1.0.0
* @category : PHP framework
* @copyright : (c) 2017 - 2021 JIHAD SINNAOUR <[email protected]>
* @copyright : (c) 2017 - 2022 Jihad Sinnaour <[email protected]>
* @link : https://www.floatphp.com
* @license : MIT License
* @license : MIT
*
* This file if a part of FloatPHP Framework
* This file if a part of FloatPHP Framework.
*/

declare(strict_types=1);

namespace App;

if (php_sapi_name() !== 'cli') exit;
Expand Down
8 changes: 5 additions & 3 deletions src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
* @subpackage : CLI Component
* @version : 1.0.0
* @category : PHP framework
* @copyright : (c) 2017 - 2021 JIHAD SINNAOUR <[email protected]>
* @copyright : (c) 2017 - 2022 Jihad Sinnaour <[email protected]>
* @link : https://www.floatphp.com
* @license : MIT License
* @license : MIT
*
* This file if a part of FloatPHP Framework
* This file if a part of FloatPHP Framework.
*/

declare(strict_types=1);

namespace FloatPHP\Cli;

class App
Expand Down
13 changes: 8 additions & 5 deletions src/BuiltIn.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,20 @@
* @subpackage : CLI Component
* @version : 1.0.0
* @category : PHP framework
* @copyright : (c) 2017 - 2021 JIHAD SINNAOUR <[email protected]>
* @copyright : (c) 2017 - 2022 Jihad Sinnaour <[email protected]>
* @link : https://www.floatphp.com
* @license : MIT License
* @license : MIT
*
* This file if a part of FloatPHP Framework
* This file if a part of FloatPHP Framework.
*/

declare(strict_types=1);

namespace FloatPHP\Cli;

use FloatPHP\Classes\Filesystem\File;
use FloatPHP\Classes\Filesystem\Stringify;
use FloatPHP\Classes\Filesystem\{
File, Stringify
};

class BuiltIn
{
Expand Down
8 changes: 5 additions & 3 deletions src/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
* @subpackage : CLI Component
* @version : 1.0.0
* @category : PHP framework
* @copyright : (c) 2017 - 2021 JIHAD SINNAOUR <[email protected]>
* @copyright : (c) 2017 - 2022 Jihad Sinnaour <[email protected]>
* @link : https://www.floatphp.com
* @license : MIT License
* @license : MIT
*
* This file if a part of FloatPHP Framework
* This file if a part of FloatPHP Framework.
*/

declare(strict_types=1);

namespace FloatPHP\Cli;

use FloatPHP\Kernel\Configuration;
Expand Down
8 changes: 5 additions & 3 deletions src/Output.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
* @subpackage : CLI Component
* @version : 1.0.0
* @category : PHP framework
* @copyright : (c) 2017 - 2021 JIHAD SINNAOUR <[email protected]>
* @copyright : (c) 2017 - 2022 Jihad Sinnaour <[email protected]>
* @link : https://www.floatphp.com
* @license : MIT License
* @license : MIT
*
* This file if a part of FloatPHP Framework
* This file if a part of FloatPHP Framework.
*/

declare(strict_types=1);

namespace FloatPHP\Cli;

class Output
Expand Down
4 changes: 2 additions & 2 deletions src/bin/controller
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
* @category : PHP framework
* @copyright : (c) 2017 - 2021 JIHAD SINNAOUR <[email protected]>
* @link : https://www.floatphp.com
* @license : MIT License
* @license : MIT
*
* This file if a part of FloatPHP Framework
* This file if a part of FloatPHP Framework.
*/

namespace App\Controllers;
Expand Down
4 changes: 2 additions & 2 deletions src/bin/model
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
* @category : PHP framework
* @copyright : (c) 2017 - 2021 JIHAD SINNAOUR <[email protected]>
* @link : https://www.floatphp.com
* @license : MIT License
* @license : MIT
*
* This file if a part of FloatPHP Framework
* This file if a part of FloatPHP Framework.
*/

namespace App\Models;
Expand Down

0 comments on commit be41266

Please sign in to comment.