Skip to content

Commit 6e70ebd

Browse files
Marcel Haurimageprince
authored andcommitted
type hints and incorrect case in class reference
1 parent 7027691 commit 6e70ebd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/code/Magento/Webapi/Controller/Soap/Request/Handler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function __construct(
113113
*
114114
* @param string $operation
115115
* @param array $arguments
116-
* @return \stdClass|null
116+
* @return array
117117
* @throws WebapiException
118118
* @throws \LogicException
119119
* @throws AuthorizationException

app/code/Magento/Webapi/Model/Plugin/GuestAuthorization.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class GuestAuthorization
1919
* Check if resource for which access is needed has anonymous permissions defined in webapi config.
2020
*
2121
* @param \Magento\Framework\Authorization $subject
22-
* @param callable $proceed
22+
* @param \Closure $proceed
2323
* @param string $resource
2424
* @param string $privilege
2525
* @return bool true If resource permission is anonymous,

app/code/Magento/Webapi/Model/Soap/Server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Server
3131
const REQUEST_PARAM_LIST_WSDL = 'wsdl_list';
3232

3333
/**
34-
* @var \Magento\Framework\App\AreaLIst
34+
* @var \Magento\Framework\App\AreaList
3535
*/
3636
protected $_areaList;
3737

0 commit comments

Comments
 (0)