@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * |
67 | 67 | * @since 2.0 |
68 | 68 | * |
69 | - * @return array of parameters for SELECT call |
|
69 | + * @return string of parameters for SELECT call |
|
70 | 70 | */ |
71 | 71 | public function getQuery() { |
72 | 72 | return $this->query; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | /** |
90 | 90 | * @since 2.0 |
91 | 91 | * |
92 | - * @return Timestamp |
|
92 | + * @return MWTimestamp|null |
|
93 | 93 | */ |
94 | 94 | public function getDateOfLogEntry() { |
95 | 95 | $this->init(); |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use SMW\DIProperty; |
6 | 6 | use SMW\SemanticData; |
7 | -use SMWDataItem as DataItem; |
|
8 | 7 | use SMWDIBlob as DIBlob; |
9 | 8 | use SESP\PropertyAnnotator; |
10 | 9 | use SESP\AppFactory; |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use SMW\DIProperty; |
6 | 6 | use SMW\SemanticData; |
7 | -use SMWDataItem as DataItem; |
|
8 | 7 | use SMWDIBlob as DIBlob; |
9 | 8 | use SESP\PropertyAnnotator; |
10 | 9 | use SESP\AppFactory; |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use SMW\DIProperty; |
6 | 6 | use SMW\SemanticData; |
7 | -use SMWDataItem as DataItem; |
|
8 | 7 | use SMWDIBlob as DIBlob; |
9 | 8 | use SESP\PropertyAnnotator; |
10 | 9 | use SESP\AppFactory; |
@@ -99,6 +99,10 @@ |
||
99 | 99 | } |
100 | 100 | } |
101 | 101 | |
102 | + /** |
|
103 | + * @param Registry $propertyRegistry |
|
104 | + * @param PropertyDefinitions $propertyDefinitions |
|
105 | + */ |
|
102 | 106 | private function addPropertyDefinition( $propertyRegistry, $propertyDefinitions, $definition, $aliases ) { |
103 | 107 | |
104 | 108 | $visible = isset( $definition['show'] ) ? $definition['show'] : false; |
@@ -3,9 +3,6 @@ |
||
3 | 3 | namespace SESP; |
4 | 4 | |
5 | 5 | use SMW\PropertyRegistry as Registry; |
6 | -use SMW\DataTypeRegistry; |
|
7 | -use SMW\DIProperty; |
|
8 | -use SMWDataItem as DataItem; |
|
9 | 6 | |
10 | 7 | /** |
11 | 8 | * @ingroup SESP |