Skip to content

Commit 1fbf8a9

Browse files
authored
Update class-app.php
1 parent ba2c652 commit 1fbf8a9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

app/boilerplates/simple/app/admin/class-app.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,32 @@
1414
class App {
1515

1616
/**
17-
* Plugins class object installed directory on the server
17+
* Plugins class object installed directory on the server.
1818
*
19-
* @var string $installed_dir Installed server directory
19+
* @var string $installed_dir Installed server directory.
2020
*/
2121
public $installed_dir;
2222

2323
/**
24-
* Plugins URL for access to any static files or assets like css, js, or media
24+
* Plugins URL for access to any static files or assets like css, js, or media.
2525
*
26-
* @var string $installed_url Installed URL
26+
* @var string $installed_url Installed URL.
2727
*/
2828
public $installed_url;
2929

3030
/**
31-
* If plugin_data is built, this represents the version number defined the the main plugin file meta
31+
* If plugin_data is built, this represents the version number defined the the main plugin file meta.
3232
*
33-
* @var string $version Version
33+
* @var string $version Version.
3434
*/
3535
public $version;
3636

3737
/**
3838
* Add auth'd/admin functionality via new Class() instantiation, add_action() and add_filter() in this method.
3939
*
40-
* @param string $installed_dir Installed server directory
41-
* @param string $installed_url Installed URL
42-
* @param string $version Version
40+
* @param string $installed_dir Installed server directory.
41+
* @param string $installed_url Installed URL.
42+
* @param string $version Version.
4343
*/
4444
function __construct( $installed_dir, $installed_url, $version ) {
4545
$this->installed_dir = $installed_dir;

0 commit comments

Comments
 (0)