Skip to content

Commit

Permalink
Automated deployment: Tue May 7 18:17:22 UTC 2024 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
laminas-bot committed May 7, 2024
1 parent e0b2e17 commit 97731a0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,6 @@ <h5 class="modal-title">Search</h5>
</html>

<!--
MkDocs version : 1.5.3
Build Date UTC : 2024-01-18 15:04:13.675668+00:00
MkDocs version : 1.6.0
Build Date UTC : 2024-05-07 18:17:21.875219+00:00
-->
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://docs.mezzio.dev/mezzio-session-cache/</loc>
<lastmod>2024-01-18</lastmod>
<lastmod>2024-05-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://docs.mezzio.dev/mezzio-session-cache/v1/config/</loc>
<lastmod>2024-01-18</lastmod>
<lastmod>2024-05-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://docs.mezzio.dev/mezzio-session-cache/v1/installation/</loc>
<lastmod>2024-01-18</lastmod>
<lastmod>2024-05-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://docs.mezzio.dev/mezzio-session-cache/v1/intro/</loc>
<lastmod>2024-01-18</lastmod>
<lastmod>2024-05-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://docs.mezzio.dev/mezzio-session-cache/v1/manual/</loc>
<lastmod>2024-01-18</lastmod>
<lastmod>2024-05-07</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified sitemap.xml.gz
Binary file not shown.
8 changes: 6 additions & 2 deletions v1/manual/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,10 @@ <h1 id="manual-usage">Manual usage</h1>
* @param string $cookieSameSite The same-site rule to apply to the persisted
* cookie. Options include "Lax", "Strict", and "None".
* Available since 1.4.0
*
* @param bool $autoRegenerate Whether or not the session ID should be
* regenerated on session data changes
* Available since 1.13.0
*
* @todo reorder these arguments so they make more sense and are in an
* order of importance
*/
Expand All @@ -329,7 +332,8 @@ <h1 id="manual-usage">Manual usage</h1>
string $cookieDomain = null,
bool $cookieSecure = false,
bool $cookieHttpOnly = false,
string $cookieSameSite = 'Lax'
string $cookieSameSite = 'Lax',
bool $autoRegenerate = true,
) {</code></pre>
<p>Pass all required values and any optional values when creating an instance:</p>
<pre class="highlight"><code class="language-php">use Cache\Adapter\Predis\PredisCachePool;
Expand Down

0 comments on commit 97731a0

Please sign in to comment.