Skip to content

Commit d2dbfc1

Browse files
committed
Update HttpSetCookieTrait.php
1 parent 856334e commit d2dbfc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Traits/HttpSetCookieTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Evas\Http\Traits;
88

99
use \InvalidArgumentException;
10-
use Evas\Base\Help\PhpHelper;
10+
use Evas\Base\Help\PhpHelp;
1111
use Evas\Http\Cookie;
1212
use Evas\Http\Traits\HttpCookiesTrait;
1313

@@ -43,7 +43,7 @@ public function setCookie($name, $value = null, int $expires = null, string $pat
4343
} else {
4444
throw new InvalidArgumentException(sprintf(
4545
'Argument 1 $name must be type of string or instance of Cookie, %s given',
46-
PhpHelper::getType($name)
46+
PhpHelp::getType($name)
4747
));
4848
}
4949
$this->withCookie($cookie->name, $cookie);

0 commit comments

Comments
 (0)