Completed
Pull Request — master (#4975)
by Peter
12:14 queued 14s
created
model/DataQuery.php 1 patch
Doc Comments   +10 added lines, -3 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 	/**
167 167
 	 * Ensure that the query is ready to execute.
168 168
 	 *
169
-	 * @param array|null $queriedColumns Any columns to filter the query by
169
+	 * @param string[] $queriedColumns Any columns to filter the query by
170 170
 	 * @return SQLSelect The finalised sql query
171 171
 	 */
172 172
 	public function getFinalisedQuery($queriedColumns = null) {
@@ -641,10 +641,10 @@  discard block
 block discarded – undo
641 641
 	 * mappings to the query object state. This has to be called
642 642
 	 * in any overloaded {@link SearchFilter->apply()} methods manually.
643 643
 	 *
644
-	 * @param String|array $relation The array/dot-syntax relation to follow
644
+	 * @param string $relation The array/dot-syntax relation to follow
645 645
 	 * @param bool $linearOnly Set to true to restrict to linear relations only. Set this
646 646
 	 * if this relation will be used for sorting, and should not include duplicate rows.
647
-	 * @return The model class of the related item
647
+	 * @return string model class of the related item
648 648
 	 */
649 649
 	public function applyRelation($relation, $linearOnly = false) {
650 650
 		// NO-OP
@@ -917,6 +917,7 @@  discard block
 block discarded – undo
917 917
 
918 918
 	/**
919 919
 	 * Set an arbitrary query parameter, that can be used by decorators to add additional meta-data to the query.
920
+	 * @param string $key
920 921
 	 */
921 922
 	public function getQueryParam($key) {
922 923
 		if(isset($this->queryParams[$key])) return $this->queryParams[$key];
@@ -949,6 +950,9 @@  discard block
 block discarded – undo
949 950
 	 */
950 951
 	protected $whereQuery;
951 952
 
953
+	/**
954
+	 * @param string $connective
955
+	 */
952 956
 	public function __construct(DataQuery $base, $connective) {
953 957
 		$this->dataClass = $base->dataClass;
954 958
 		$this->query = $base->query;
@@ -958,6 +962,9 @@  discard block
 block discarded – undo
958 962
 		$base->where($this);
959 963
 	}
960 964
 
965
+	/**
966
+	 * @param string $filter
967
+	 */
961 968
 	public function where($filter) {
962 969
 		if($filter) {
963 970
 			$this->whereQuery->addWhere($filter);
Please login to merge, or discard this patch.
thirdparty/Zend/Cache/Backend/File.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -732,6 +732,9 @@  discard block
 block discarded – undo
732 732
         return $result;
733 733
     }
734 734
 
735
+    /**
736
+     * @param string $mode
737
+     */
735 738
     protected function _get($dir, $mode, $tags = array())
736 739
     {
737 740
         if (!is_dir($dir)) {
@@ -819,6 +822,7 @@  discard block
 block discarded – undo
819 822
     /**
820 823
      * Compute & return the expire time
821 824
      *
825
+     * @param integer $lifetime
822 826
      * @return int expire time (unix timestamp)
823 827
      */
824 828
     protected function _expireTime($lifetime)
Please login to merge, or discard this patch.
forms/ListboxField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 	 * Returns a <select> tag containing all the appropriate <option> tags
60 60
 	 * 
61 61
 	 * @param array $properties
62
-	 * @return string
62
+	 * @return HTMLText
63 63
 	 */
64 64
 	public function Field($properties = array()) {
65 65
 		$properties = array_merge($properties, array(
Please login to merge, or discard this patch.
model/UnsavedRelationList.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,6 +52,7 @@  discard block
 block discarded – undo
52 52
 	 * Create a new UnsavedRelationList
53 53
 	 *
54 54
 	 * @param string $dataClass The DataObject class used in the relation
55
+	 * @param string $relationName
55 56
 	 */
56 57
 	public function __construct($baseClass, $relationName, $dataClass) {
57 58
 		$this->baseClass = $baseClass;
@@ -144,7 +145,7 @@  discard block
 block discarded – undo
144 145
 	 * Add a number of items to the relation.
145 146
 	 *
146 147
 	 * @param array $items Items to add, as either DataObjects or IDs.
147
-	 * @return DataList
148
+	 * @return UnsavedRelationList
148 149
 	 */
149 150
 	public function addMany($items) {
150 151
 		foreach($items as $item) {
Please login to merge, or discard this patch.
view/ArrayData.php 1 patch
Doc Comments   +3 added lines, -9 removed lines patch added patch discarded remove patch
@@ -50,14 +50,7 @@  discard block
 block discarded – undo
50 50
 	/**
51 51
 	 * Gets a field from this object.
52 52
 	 *
53
-	 * @param string $field
54
-	 *
55
-	 * If the value is an object but not an instance of
56
-	 * ViewableData, it will be converted recursively to an
57
-	 * ArrayData.
58
-	 *
59
-	 * If the value is an associative array, it will likewise be
60
-	 * converted recursively to an ArrayData.
53
+	 * @param string $f
61 54
 	 */
62 55
 	public function getField($f) {
63 56
 		$value = $this->array[$f];
@@ -83,6 +76,7 @@  discard block
 block discarded – undo
83 76
 	 * Check array to see if field isset
84 77
 	 *
85 78
 	 * @param string Field Key
79
+	 * @param string $f
86 80
 	 * @return bool
87 81
 	 */
88 82
 	public function hasField($f) {
@@ -93,7 +87,7 @@  discard block
 block discarded – undo
93 87
 	 * Converts an associative array to a simple object
94 88
 	 *
95 89
 	 * @param array
96
-	 * @return obj $obj
90
+	 * @return stdClass $obj
97 91
 	 */
98 92
 	public static function array_to_object($arr = null) {
99 93
 		$obj = new stdClass();
Please login to merge, or discard this patch.
filesystem/flysystem/AssetAdapter.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
         ]
38 38
 	);
39 39
 
40
+	/**
41
+	 * @param string $root
42
+	 */
40 43
 	public function __construct($root = null, $writeFlags = LOCK_EX, $linkHandling = self::DISALLOW_LINKS) {
41 44
 		// Get root path
42 45
 		$root = $this->findRoot($root);
@@ -117,7 +120,7 @@  discard block
 block discarded – undo
117 120
 	 * Render server configuration file from a template file
118 121
 	 *
119 122
 	 * @param string $template
120
-	 * @return \HTMLText Rendered results
123
+	 * @return string Rendered results
121 124
 	 */
122 125
 	protected function renderTemplate($template) {
123 126
 		// Build allowed extensions
Please login to merge, or discard this patch.
filesystem/flysystem/ProtectedAssetAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * Provide secure downloadable
43 43
      *
44 44
      * @param string $path
45
-     * @return string|null
45
+     * @return string
46 46
      */
47 47
     public function getProtectedUrl($path) {
48 48
         // Public URLs are handled via a request handler within /assets.
Please login to merge, or discard this patch.
model/ValidationResult.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
 	/**
22 22
 	 * Create a new ValidationResult.
23 23
 	 * By default, it is a successful result.	Call $this->error() to record errors.
24
+	 * @param string $message
24 25
 	 */
25 26
 	public function __construct($valid = true, $message = null) {
26 27
 		$this->isValid = $valid;
Please login to merge, or discard this patch.
tests/filesystem/AssetStoreTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -625,6 +625,9 @@  discard block
 block discarded – undo
625 625
 	}
626 626
 
627 627
 
628
+	/**
629
+	 * @param string $fileID
630
+	 */
628 631
 	public function getOriginalFilename($fileID) {
629 632
 		return parent::getOriginalFilename($fileID);
630 633
 	}
@@ -633,6 +636,9 @@  discard block
 block discarded – undo
633 636
 		return parent::removeVariant($fileID);
634 637
 	}
635 638
 
639
+	/**
640
+	 * @param null|string $variant
641
+	 */
636 642
 	public function getDefaultConflictResolution($variant) {
637 643
 		return parent::getDefaultConflictResolution($variant);
638 644
 	}
Please login to merge, or discard this patch.