Completed
Push — stable8.1 ( 7a1b8f...6080a3 )
by
unknown
107:52
created
tests/lib/contacts/localadressbook.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -46,6 +46,10 @@
 block discarded – undo
46 46
 
47 47
 class SimpleUserForTesting implements \OCP\IUser {
48 48
 
49
+	/**
50
+	 * @param string $uid
51
+	 * @param string $displayName
52
+	 */
49 53
 	public function __construct($uid, $displayName) {
50 54
 
51 55
 		$this->uid = $uid;
Please login to merge, or discard this patch.
tests/lib/datetimeformatter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@
 block discarded – undo
37 37
 		$this->formatter = new \OC\DateTimeFormatter(new \DateTimeZone('UTC'), new \OC_L10N('lib', 'en'));
38 38
 	}
39 39
 
40
+	/**
41
+	 * @param integer $time
42
+	 */
40 43
 	protected function getTimestampAgo($time, $seconds = 0, $minutes = 0, $hours = 0, $days = 0, $years = 0) {
41 44
 		return $time - $seconds - $minutes * 60 - $hours * 3600 - $days * 24*3600 - $years * 365*24*3600;
42 45
 	}
Please login to merge, or discard this patch.
tests/lib/db.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -322,11 +322,19 @@
 block discarded – undo
322 322
 		$this->assertSame(2, $query->execute(array('uri1')));
323 323
 	}
324 324
 
325
+	/**
326
+	 * @param string $fullname
327
+	 * @param string $uri
328
+	 */
325 329
 	protected function insertCardData($fullname, $uri) {
326 330
 		$query = OC_DB::prepare("INSERT INTO `*PREFIX*{$this->table2}` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)");
327 331
 		$this->assertSame(1, $query->execute(array($fullname, $uri, $this->getUniqueID())));
328 332
 	}
329 333
 
334
+	/**
335
+	 * @param string $fullname
336
+	 * @param string $uri
337
+	 */
330 338
 	protected function updateCardData($fullname, $uri) {
331 339
 		$query = OC_DB::prepare("UPDATE `*PREFIX*{$this->table2}` SET `uri` = ? WHERE `fullname` = ?");
332 340
 		return $query->execute(array($uri, $fullname));
Please login to merge, or discard this patch.
tests/lib/db/migrator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 	}
53 53
 
54 54
 	/**
55
-	 * @return \Doctrine\DBAL\Schema\Schema[]
55
+	 * @return Schema[]
56 56
 	 */
57 57
 	private function getDuplicateKeySchemas() {
58 58
 		$startSchema = new Schema(array(), array(), $this->getSchemaConfig());
Please login to merge, or discard this patch.
tests/lib/encryption/updatetest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -217,6 +217,7 @@
 block discarded – undo
217 217
 	 * create mock of the update method
218 218
 	 *
219 219
 	 * @param array$methods methods which should be set
220
+	 * @param string[] $methods
220 221
 	 * @return \OC\Encryption\Update | \PHPUnit_Framework_MockObject_MockObject
221 222
 	 */
222 223
 	protected function getUpdateMock($methods) {
Please login to merge, or discard this patch.
tests/lib/helper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -517,8 +517,8 @@
 block discarded – undo
517 517
 	/**
518 518
 	 * Allows us to test private methods/properties
519 519
 	 *
520
-	 * @param $object
521
-	 * @param $methodName
520
+	 * @param OC\Files\View $object
521
+	 * @param string $methodName
522 522
 	 * @param array $parameters
523 523
 	 * @return mixed
524 524
 	 * @deprecated Please extend \Test\TestCase and use self::invokePrivate() then
Please login to merge, or discard this patch.
tests/lib/preview.php 1 patch
Doc Comments   +13 added lines, -5 removed lines patch added patch discarded remove patch
@@ -626,6 +626,10 @@  discard block
 block discarded – undo
626 626
 		return $postfix;
627 627
 	}
628 628
 
629
+	/**
630
+	 * @param integer $previewWidth
631
+	 * @param integer $previewHeight
632
+	 */
629 633
 	private function getSmallerThanMaxPreview($fileId, $previewWidth, $previewHeight) {
630 634
 		$preview = $this->createPreview($previewWidth, $previewHeight);
631 635
 
@@ -645,6 +649,10 @@  discard block
 block discarded – undo
645 649
 		$this->cachedBigger[] = $preview->isCached($fileId);
646 650
 	}
647 651
 
652
+	/**
653
+	 * @param integer $width
654
+	 * @param integer $height
655
+	 */
648 656
 	private function createThumbnailFromBiggerCachedPreview($fileId, $width, $height) {
649 657
 		$preview = $this->createPreview($width, $height);
650 658
 
@@ -769,7 +777,7 @@  discard block
 block discarded – undo
769 777
 	 * Sets the variables used to define the boundaries which need to be respected when using a
770 778
 	 * specific sample
771 779
 	 *
772
-	 * @param $sampleId
780
+	 * @param integer $sampleId
773 781
 	 */
774 782
 	private function getSample($sampleId) {
775 783
 		// Corrects a rounding difference when using the EPS (Imagick converted) sample
@@ -798,7 +806,7 @@  discard block
 block discarded – undo
798 806
 	 * @param int $sampleWidth
799 807
 	 * @param int $sampleHeight
800 808
 	 *
801
-	 * @return array
809
+	 * @return integer[]
802 810
 	 */
803 811
 	private function setMaxPreview($sampleWidth, $sampleHeight) {
804 812
 		// Max previews are never scaled up
@@ -822,7 +830,7 @@  discard block
 block discarded – undo
822 830
 	 * @param int $askedWidth
823 831
 	 * @param int $askedHeight
824 832
 	 *
825
-	 * @return array
833
+	 * @return integer[]
826 834
 	 */
827 835
 	private function simulatePreviewDimensions($askedWidth, $askedHeight) {
828 836
 		$askedWidth = min($askedWidth, $this->configMaxWidth);
@@ -849,7 +857,7 @@  discard block
 block discarded – undo
849 857
 	 * @param int $askedWidth
850 858
 	 * @param int $askedHeight
851 859
 	 *
852
-	 * @return \int[]
860
+	 * @return integer[]
853 861
 	 */
854 862
 	private function applyAspectRatio($askedWidth, $askedHeight) {
855 863
 		$originalRatio = $this->maxPreviewRatio;
@@ -868,7 +876,7 @@  discard block
 block discarded – undo
868 876
 	 * @param int $askedWidth
869 877
 	 * @param int $askedHeight
870 878
 	 *
871
-	 * @return array
879
+	 * @return integer[]
872 880
 	 */
873 881
 	private function fixSize($askedWidth, $askedHeight) {
874 882
 		if ($this->scalingUp) {
Please login to merge, or discard this patch.
tests/lib/repair/repairlegacystorage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
 	 * Returns the storage id based on the numeric id
105 105
 	 *
106 106
 	 * @param int $storageId numeric id of the storage
107
-	 * @return string storage id or null if not found
107
+	 * @return integer|null storage id or null if not found
108 108
 	 */
109 109
 	private function getStorageId($storageId) {
110 110
 		$numericId = Storage::getNumericStorageId($storageId);
Please login to merge, or discard this patch.
tests/lib/security/certificatemanager.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -38,6 +38,10 @@
 block discarded – undo
38 38
 		parent::tearDown();
39 39
 	}
40 40
 
41
+	/**
42
+	 * @param Certificate[] $expected
43
+	 * @param OCP\ICertificate[] $actual
44
+	 */
41 45
 	protected function assertEqualsArrays($expected, $actual) {
42 46
 		sort($expected);
43 47
 		sort($actual);
Please login to merge, or discard this patch.