Skip to content
This repository has been archived by the owner on Feb 17, 2020. It is now read-only.

Commit

Permalink
Fixed strict standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
jinovak committed Sep 14, 2017
1 parent 58ff800 commit 61843a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/IPub/FormDateTime/Controls/Date.php
Expand Up @@ -317,7 +317,8 @@ public function getControl()
*/
public function getControlPart()
{
$key = reset(func_get_args());
$args = func_get_args();
$key = reset($args);

$name = $this->getHtmlName();

Expand Down
3 changes: 2 additions & 1 deletion src/IPub/FormDateTime/Controls/DateTime.php
Expand Up @@ -129,7 +129,8 @@ public function getControl()
*/
public function getControlPart()
{
$key = reset(func_get_args());
$args = func_get_args();
$key = reset($args);

$name = $this->getHtmlName();

Expand Down
3 changes: 2 additions & 1 deletion src/IPub/FormDateTime/Controls/Time.php
Expand Up @@ -136,7 +136,8 @@ public function getControl()
*/
public function getControlPart()
{
$key = reset(func_get_args());
$args = func_get_args();
$key = reset($args);

$name = $this->getHtmlName();

Expand Down

0 comments on commit 61843a5

Please sign in to comment.