Skip to content

Commit c0fcfff

Browse files
authored
Fixed oauth phtml docblock (#3746)
1 parent 55b14a3 commit c0fcfff

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

app/code/core/Mage/Oauth/Block/Authorize/Abstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* @method Mage_Oauth_Block_Authorize_Button setIsSimple(bool $flag)
2626
* @method bool getHasException()
2727
* @method Mage_Oauth_Block_AuthorizeBaseAbstract setHasException(bool $flag)
28-
* @method bool getVerifier()
28+
* @method null|string getVerifier()
2929
* @method Mage_Oauth_Block_AuthorizeBaseAbstract setVerifier(string $verifier)
3030
* @method bool getIsLogged()
3131
* @method Mage_Oauth_Block_AuthorizeBaseAbstract setIsLogged(bool $flag)

app/design/frontend/base/default/template/oauth/authorize/button-simple.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* "Grant Access" button
1919
*
20-
* @var $this Mage_Oauth_Block_Authorize_ButtonBaseAbstract
20+
* @var Mage_Oauth_Block_Authorize_ButtonBaseAbstract $this
2121
*/
2222
$logo = $this->getSkinUrl('images/logo-large.gif', ['_area' => 'adminhtml', '_package' => 'default']);
2323
?>

app/design/frontend/base/default/template/oauth/authorize/button.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* "Grant Access" button
1717
*
18-
* @var $this Mage_Oauth_Block_Authorize_Button
18+
* @var Mage_Oauth_Block_Authorize_Button $this
1919
*/
2020
?>
2121
<div>

app/design/frontend/base/default/template/oauth/authorize/confirm-simple.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Authorize confirmation simple template
1818
*
19-
* @var $this Mage_Oauth_Block_AuthorizeBaseAbstract
19+
* @var Mage_Oauth_Block_AuthorizeBaseAbstract $this
2020
*/
2121
?>
2222
<div class="login-container">

app/design/frontend/base/default/template/oauth/authorize/confirm.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Authorize confirm simple template
1818
*
19-
* @var $this Mage_Oauth_Block_Authorize
19+
* @var Mage_Oauth_Block_Authorize $this
2020
*/
2121
?>
2222
<div class="account-login login-only">

app/design/frontend/base/default/template/oauth/authorize/form/login-simple.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Simple login form template
1818
*
19-
* @var $this Mage_Oauth_Block_Authorize
19+
* @var Mage_Oauth_Block_Authorize $this
2020
*/
2121
?>
2222
<div class="content-container">

app/design/frontend/base/default/template/oauth/authorize/form/login.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Customer login form template
1818
*
19-
* @var $this Mage_Oauth_Block_Authorize
19+
* @var Mage_Oauth_Block_Authorize $this
2020
*/
2121

2222
$rejectJs = "document.location.href='{$this->getRejectUrl()}';";

app/design/frontend/base/default/template/oauth/authorize/head-simple.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Head block Oauth simple pages
1818
*
19-
* @var $this Mage_Page_Block_Html_Head
19+
* @var Mage_Page_Block_Html_Head $this
2020
*/
2121
?>
2222
<meta http-equiv="Content-Type" content="<?php echo $this->getContentType() ?>" />

app/design/frontend/base/default/template/oauth/authorize/reject-simple.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Authorize rejection simple template
1818
*
19-
* @var $this Mage_Oauth_Block_AuthorizeBaseAbstract
19+
* @var Mage_Oauth_Block_AuthorizeBaseAbstract $this
2020
*/
2121
?>
2222
<div class="login-container">

app/design/frontend/base/default/template/oauth/authorize/reject.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Token rejection template
1818
*
19-
* @var $this Mage_Oauth_Block_Authorize_Button
19+
* @var Mage_Oauth_Block_Authorize_Button $this
2020
*/
2121
?>
2222
<div class="account-login login-only">

0 commit comments

Comments
 (0)