Skip to content

Commit

Permalink
docs: remove unneeded @var
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Feb 18, 2024
1 parent 1d7a153 commit 707448a
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions system/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@

// The path to the application directory.
if (! defined('APPPATH')) {
/**
* @var Paths $paths
*/
/** @var Paths $paths */
define('APPPATH', realpath(rtrim($paths->appDirectory, '\\/ ')) . DIRECTORY_SEPARATOR);
}

Expand All @@ -41,25 +39,16 @@

// The path to the system directory.
if (! defined('SYSTEMPATH')) {
/**
* @var Paths $paths
*/
define('SYSTEMPATH', realpath(rtrim($paths->systemDirectory, '\\/ ')) . DIRECTORY_SEPARATOR);
}

// The path to the writable directory.
if (! defined('WRITEPATH')) {
/**
* @var Paths $paths
*/
define('WRITEPATH', realpath(rtrim($paths->writableDirectory, '\\/ ')) . DIRECTORY_SEPARATOR);
}

// The path to the tests directory
if (! defined('TESTPATH')) {
/**
* @var Paths $paths
*/
define('TESTPATH', realpath(rtrim($paths->testsDirectory, '\\/ ')) . DIRECTORY_SEPARATOR);
}

Expand Down

0 comments on commit 707448a

Please sign in to comment.