Completed
Push — 3.5 ( 535d02...0d8915 )
by Robbie
21s
created
admin/code/CMSBatchAction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 	 * @param $objs The SS_List of objects to perform this batch action
73 73
 	 * on.
74 74
 	 * @param $helperMethod The method to call on each of those objects.
75
-	 * @return JSON encoded map in the following format:
75
+	 * @return string encoded map in the following format:
76 76
 	 *  {
77 77
 	 *     'modified': {
78 78
 	 *       3: {'TreeTitle': 'Page3'},
Please login to merge, or discard this patch.
admin/code/CMSMenu.php 1 patch
Doc Comments   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	 *                          left.
87 87
 	 * @param array $attributes an array of attributes to include on the link.
88 88
 	 *
89
-	 * @return boolean The result of the operation.
89
+	 * @return boolean|null The result of the operation.
90 90
 	 */
91 91
 	public static function add_link($code, $menuTitle, $url, $priority = -1, $attributes = null) {
92 92
 		return self::add_menu_item($code, $menuTitle, $url, null, $priority, $attributes);
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	 * 					have the rights to access some other part of the admin area.
107 107
 	 * @param array $attributes an array of attributes to include on the link.
108 108
 	 *
109
-	 * @return boolean Success
109
+	 * @return boolean|null Success
110 110
 	 */
111 111
 	public static function add_menu_item($code, $menuTitle, $url, $controllerClass = null, $priority = -1,
112 112
 											$attributes = null) {
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
 	 * 					have the rights to access some other part of the admin area.
238 238
 	 * @param array $attributes an array of attributes to include on the link.
239 239
 	 *
240
-	 * @return boolean Success
240
+	 * @return boolean|null Success
241 241
 	 */
242 242
 	public static function replace_menu_item($code, $menuTitle, $url, $controllerClass = null, $priority = -1,
243 243
 												$attributes = null) {
@@ -256,6 +256,8 @@  discard block
 block discarded – undo
256 256
 	
257 257
 	/**
258 258
 	 * Add a previously built menu item object to the menu
259
+	 * @param string $code
260
+	 * @param CMSMenuItem $cmsMenuItem
259 261
 	 */
260 262
 	protected static function add_menu_item_obj($code, $cmsMenuItem) {
261 263
 		self::$menu_item_changes[] = array(
Please login to merge, or discard this patch.
admin/code/CMSMenuItem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 	/**
73 73
 	 * @param array
74 74
 	 *
75
-	 * @return HTML
75
+	 * @return string
76 76
 	 */
77 77
 	public function getAttributesHTML($attrs = null) {
78 78
 		$exclude = (is_string($attrs)) ? func_get_args() : null;
Please login to merge, or discard this patch.
admin/code/GroupImportForm.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -14,6 +14,10 @@
 block discarded – undo
14 14
 	 */
15 15
 	protected $group;
16 16
 
17
+	/**
18
+	 * @param SecurityAdmin $controller
19
+	 * @param string $name
20
+	 */
17 21
 	public function __construct($controller, $name, $fields = null, $actions = null, $validator = null) {
18 22
 		if(!$fields) {
19 23
 			$helpHtml = _t(
Please login to merge, or discard this patch.
admin/code/MemberImportForm.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,10 @@  discard block
 block discarded – undo
14 14
 	 */
15 15
 	protected $group;
16 16
 
17
+	/**
18
+	 * @param SecurityAdmin $controller
19
+	 * @param string $name
20
+	 */
17 21
 	public function __construct($controller, $name, $fields = null, $actions = null, $validator = null) {
18 22
 		if(!$fields) {
19 23
 			$helpHtml = _t(
@@ -100,7 +104,7 @@  discard block
 block discarded – undo
100 104
 	}
101 105
 
102 106
 	/**
103
-	 * @param $group Group
107
+	 * @param DataObject $group Group
104 108
 	 */
105 109
 	public function setGroup($group) {
106 110
 		$this->group = $group;
Please login to merge, or discard this patch.
api/JSONDataFormatter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 	 * @param DataObjectInterface $obj
46 46
 	 * @param  $fields
47 47
 	 * @param  $relations
48
-	 * @return EmptyJSONObject
48
+	 * @return stdClass
49 49
 	 */
50 50
 	public function convertDataObjectToJSONObject(DataObjectInterface $obj, $fields = null, $relations = null) {
51 51
 		$className = $obj->class;
Please login to merge, or discard this patch.
control/injector/Injector.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
 	 *
355 355
 	 * @param string $property
356 356
 	 *				the name of the property
357
-	 * @param object $object
357
+	 * @param string $object
358 358
 	 *				the object to be set
359 359
 	 */
360 360
 	public function addAutoProperty($property, $object) {
@@ -448,7 +448,7 @@  discard block
 block discarded – undo
448 448
 	 *				The name of the service to update the definition for
449 449
 	 * @param string $property
450 450
 	 *				The name of the property to update.
451
-	 * @param mixed $value
451
+	 * @param string $value
452 452
 	 *				The value to set
453 453
 	 * @param boolean $append
454 454
 	 *				Whether to append (the default) when the property is an array
@@ -753,6 +753,7 @@  discard block
 block discarded – undo
753 753
 	 *
754 754
 	 * Will recursively call hasService for each depth of dotting
755 755
 	 *
756
+	 * @param string $name
756 757
 	 * @return string
757 758
 	 *				The name of the service (as it might be different from the one passed in)
758 759
 	 */
@@ -929,8 +930,6 @@  discard block
 block discarded – undo
929 930
 	 *
930 931
 	 * @param string $name
931 932
 	 *				Name of the class to create an object of
932
-	 * @param array $args
933
-	 *				Arguments to pass to the constructor
934 933
 	 * @return mixed
935 934
 	 */
936 935
 	public function createWithArgs($name, $constructorArgs) {
Please login to merge, or discard this patch.
control/PjaxResponseNegotiator.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 	protected $fragmentOverride = null;
36 36
 
37 37
 	/**
38
-	 * @param RequestHandler $controller
39 38
 	 * @param SS_HTTPResponse An existing response to reuse (optional)
40 39
 	 * @param Array $callbacks
40
+	 * @param SS_HTTPResponse $response
41 41
 	 */
42 42
 	public function __construct($callbacks = array(), $response = null) {
43 43
 		$this->callbacks = $callbacks;
@@ -61,7 +61,6 @@  discard block
 block discarded – undo
61 61
 	 * @param array $extraCallbacks List of anonymous functions or callables returning either a string
62 62
 	 * or SS_HTTPResponse, keyed by their fragment identifier. The 'default' key can
63 63
 	 * be used as a fallback for non-ajax responses.
64
-	 * @param array $fragmentOverride Change the response fragments.
65 64
 	 * @return SS_HTTPResponse
66 65
 	 */
67 66
 	public function respond(SS_HTTPRequest $request, $extraCallbacks = array()) {
@@ -109,7 +108,7 @@  discard block
 block discarded – undo
109 108
 	/**
110 109
 	 * Set up fragment overriding - will completely replace the incoming fragments.
111 110
 	 *
112
-	 * @param array $fragments Fragments to insert.
111
+	 * @param string[] $fragments Fragments to insert.
113 112
 	 */
114 113
 	public function setFragmentOverride($fragments) {
115 114
 		if (!is_array($fragments)) throw new InvalidArgumentException();
Please login to merge, or discard this patch.
control/RequestHandler.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -121,6 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
 	/**
123 123
 	 * Set the DataModel for this request.
124
+	 * @param DataModel $model
124 125
 	 */
125 126
 	public function setDataModel($model) {
126 127
 		$this->model = $model;
@@ -238,6 +239,9 @@  discard block
 block discarded – undo
238 239
 		return $this;
239 240
 	}
240 241
 
242
+	/**
243
+	 * @param SS_HTTPRequest $request
244
+	 */
241 245
 	protected function findAction($request) {
242 246
 		$handlerClass = ($this->class) ? $this->class : get_class($this);
243 247
 
@@ -384,6 +388,7 @@  discard block
 block discarded – undo
384 388
 
385 389
 	/**
386 390
 	 * Return the class that defines the given action, so that we know where to check allowed_actions.
391
+	 * @return string|null
387 392
 	 */
388 393
 	protected function definingClassForAction($actionOrigCasing) {
389 394
 		$action = strtolower($actionOrigCasing);
@@ -492,6 +497,7 @@  discard block
 block discarded – undo
492 497
 	 * or {@link handleRequest()}, but in some based we want to set it manually.
493 498
 	 *
494 499
 	 * @param SS_HTTPRequest
500
+	 * @param SS_HTTPRequest $request
495 501
 	 */
496 502
 	public function setRequest($request) {
497 503
 		$this->request = $request;
Please login to merge, or discard this patch.