Completed
Push — master ( 43acf6...5d1976 )
by mw
12s
created
src/CacheFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	 *
121 121
 	 * @param integer|string $mediaWikiCacheType
122 122
 	 *
123
-	 * @return Cache
123
+	 * @return null|\Onoi\Cache\Cache
124 124
 	 */
125 125
 	public function newMediaWikiCompositeCache( $mediaWikiCacheType = null ) {
126 126
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 	 * @param string|integer|null $cacheType
144 144
 	 * @param integer $cacheLifetime
145 145
 	 *
146
-	 * @return BlobStore
146
+	 * @return \Onoi\BlobStore\BlobStore
147 147
 	 */
148 148
 	public function newBlobStore( $namespace, $cacheType = null, $cacheLifetime = 0 ) {
149 149
 
Please login to merge, or discard this patch.
src/SharedCallbackContainer.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@  discard block
 block discarded – undo
29 29
 		$this->registerCallbackHandlersByFactory( $callbackLoader );
30 30
 	}
31 31
 
32
+	/**
33
+	 * @param CallbackLoader $callbackLoader
34
+	 */
32 35
 	private function registerCallbackHandlers( $callbackLoader ) {
33 36
 
34 37
 		$callbackLoader->registerExpectedReturnType( 'Settings', '\SMW\Settings' );
@@ -111,6 +114,9 @@  discard block
 block discarded – undo
111 114
 		} );
112 115
 	}
113 116
 
117
+	/**
118
+	 * @param CallbackLoader $callbackLoader
119
+	 */
114 120
 	private function registerCallbackHandlersByFactory( $callbackLoader ) {
115 121
 
116 122
 		$callbackLoader->registerCallback( 'BlobStore', function( $namespace, $cacheType = null, $ttl = 0 ) use ( $callbackLoader ) {
Please login to merge, or discard this patch.
tests/phpunit/includes/storage/sqlstore/Sql3StubSemanticDataTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use SMW\DIProperty;
6 6
 use SMW\DIWikiPage;
7 7
 use SMW\SemanticData;
8
-use SMW\StoreFactory;
9 8
 use SMWDITime as DITime;
10 9
 use SMWSql3StubSemanticData as StubSemanticData;
11 10
 use Title;
Please login to merge, or discard this patch.