1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 15:57:01 +02:00

Add PR #270 - fix missing apostrophe in a phpdoc section of WireInput

This commit is contained in:
netcarver
2023-05-02 10:06:58 -04:00
committed by Ryan Cramer
parent d832982228
commit 580641d69f

View File

@@ -298,7 +298,7 @@ class WireInput extends Wire {
* // setting cookies
* $input->cookie->foo = 'bar'; // set with default options (expires with session)
* $input->cookie->set('foo', 'bar'); // same as above
* $input->cookie->set('foo', bar', 86400); // expire after 86400 seconds (1 day)
* $input->cookie->set('foo', 'bar', 86400); // expire after 86400 seconds (1 day)
* $input->cookie->set('foo', 'bar', [ 'age' => 86400, 'path' => $page->url ]);
*
* // getting cookies
@@ -1903,4 +1903,3 @@ class WireInput extends Wire {
}
}