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

Commit

Permalink
Merge pull request #5 from jinovak/master
Browse files Browse the repository at this point in the history
- Fixed strict standards.
  • Loading branch information
akadlec committed Sep 15, 2017
2 parents 58ff800 + 61843a5 commit 2ee11d3
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 2ee11d3

Please sign in to comment.