File tree 3 files changed +12
-12
lines changed
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 9
9
*/
10
10
class Application extends BaseApplication
11
11
{
12
- const NAME = 'Trakt to YTS ' ;
13
- const VERSION = '@git-version@ ' ;
12
+ public const NAME = 'Trakt to YTS ' ;
13
+ public const VERSION = '@git-version@ ' ;
14
14
15
15
/**
16
16
* Application constructor.
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ class Quality
10
10
/**
11
11
* 1080p quality
12
12
*/
13
- const Q_1080P = '1080p ' ;
13
+ public const Q_1080P = '1080p ' ;
14
14
/**
15
15
* 720p quality
16
16
*/
17
- const Q_720P = '720p ' ;
17
+ public const Q_720P = '720p ' ;
18
18
/**
19
19
* 3D quality
20
20
*/
21
- const Q_3D = '3D ' ;
21
+ public const Q_3D = '3D ' ;
22
22
}
Original file line number Diff line number Diff line change 15
15
*/
16
16
class ScrapeCommand extends Command
17
17
{
18
- const ALLOWED_QUALITIES = [
18
+ public const ALLOWED_QUALITIES = [
19
19
Quality::Q_1080P ,
20
20
Quality::Q_720P ,
21
21
Quality::Q_3D ,
22
22
];
23
- const STATUS_DOWNLOADED = 'downloaded ' ;
24
- const STATUS_FAILED = 'failed ' ;
25
- const STATUS_NO_RELEASE = 'no-release ' ;
26
- const TRAKT_API_URI = 'https://api.trakt.tv ' ;
27
- const TRAKT_MAIN_URI = 'https://trakt.tv ' ;
28
- const YTS_API_URI = 'https://yts.am/api/v2 ' ;
23
+ public const STATUS_DOWNLOADED = 'downloaded ' ;
24
+ public const STATUS_FAILED = 'failed ' ;
25
+ public const STATUS_NO_RELEASE = 'no-release ' ;
26
+ public const TRAKT_API_URI = 'https://api.trakt.tv ' ;
27
+ public const TRAKT_MAIN_URI = 'https://trakt.tv ' ;
28
+ public const YTS_API_URI = 'https://yts.am/api/v2 ' ;
29
29
30
30
/**
31
31
* A Trakt API key
You can’t perform that action at this time.
0 commit comments