From 0d9c7c2b79da3d5c5b7e84b8862e5ae1ff35b4af Mon Sep 17 00:00:00 2001 From: damienleduc Date: Mon, 17 Dec 2018 16:04:00 +0100 Subject: [PATCH] Replacing of size to date in File Date section --- components/finder.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/finder.rst b/components/finder.rst index 57473233303..7beb9ab8524 100644 --- a/components/finder.rst +++ b/components/finder.rst @@ -343,7 +343,7 @@ Restrict files by last modified dates with the Restrict by a date range by chaining calls or passing an array:: - $finder->date('>= 2018-01-01')->size('<= 2018-12-31'); + $finder->date('>= 2018-01-01')->date('<= 2018-12-31'); // same as above $finder->date(array('>= 2018-01-01', '<= 2018-12-31'));