Completed
Push — master ( ae7926...01a45e )
by Karsten
09:28
created
src/DatabaseLogReader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/PropertyAnnotators/UserBlockPropertyAnnotator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/PropertyAnnotators/UserGroupPropertyAnnotator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/PropertyAnnotators/UserRightPropertyAnnotator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/PropertyRegistry.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -99,6 +99,10 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,9 +3,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.