Changeset 887 for trunk/Packages/Common/Common.php
- Timestamp:
- Nov 20, 2020, 12:08:12 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Common.php
r874 r887 26 26 class PackageCommon 27 27 { 28 var$Name;29 var$Version;30 var$ReleaseDate;31 var$License;32 var$Creator;33 var$Homepage;28 public string $Name; 29 public string $Version; 30 public int $ReleaseDate; 31 public string $License; 32 public string $Creator; 33 public string $Homepage; 34 34 35 35 function __construct() … … 46 46 class Paging 47 47 { 48 var$TotalCount;49 var$ItemPerPage;50 var$Around;51 var$SQLLimit;52 var$Page;48 public int $TotalCount; 49 public int $ItemPerPage; 50 public int $Around; 51 public string $SQLLimit; 52 public int $Page; 53 53 54 54 function __construct() … … 60 60 } 61 61 62 function Show() 62 function Show(): string 63 63 { 64 64 $QueryItems = GetQueryStringArray($_SERVER['QUERY_STRING']);
Note:
See TracChangeset
for help on using the changeset viewer.