Browse
For agents
About
Travelpayouts
/
trunk
Travelpayouts
vtrunk
Switch version
1.1.11
1.1.12
1.1.13
1.1.14
1.1.15
1.1.16
1.1.17
1.1.18
1.1.19
1.1.2
1.1.20
1.1.21
1.1.22
1.1.23
1.1.3
1.1.4
1.1.5
1.1.6
1.1.7
1.1.8
1.1.9
1.2.0
1.2.1
1.2.2
1.2.3
All 56 releases
Overview
Code
travelpayouts
/
src
/
components
/
Module.php
Module.php
in Travelpayouts trunk, at src/components/Module.php
25 lines
344 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
/**
4
* Created by: Andrey Polyakov (andrey@polyakov.im)
5
*/
6
7
namespace
Travelpayouts
\
components
;
8
9
/**
10
* Class Module
11
*
@package
Travelpayouts\components
12
*/
13
abstract
class
Module
extends
BaseInjectedObject
14
{
15
public
$
name
;
16
17
/**
18
*
@return
bool
19
*/
20
public
function
isActive
(
)
:
bool
21
{
22
return
true
;
23
}
24
}
25