We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent753a509 commitfb9b0d0Copy full SHA for fb9b0d0
src/Symfony/Component/HttpKernel/Profiler/Profiler.php
@@ -116,15 +116,15 @@ public function purge()
116
/**
117
* Finds profiler tokens for the given criteria.
118
*
119
- * @paramstring|null $limit The maximum number of tokens to return
+ * @paramint|null $limit The maximum number of tokens to return
120
* @param string|null $start The start date to search from
121
* @param string|null $end The end date to search to
122
123
* @return array
124
125
* @see https://php.net/datetime.formats for the supported date/time formats
126
*/
127
-publicfunctionfind(?string$ip, ?string$url, ?string$limit, ?string$method, ?string$start, ?string$end,string$statusCode =null)
+publicfunctionfind(?string$ip, ?string$url, ?int$limit, ?string$method, ?string$start, ?string$end,string$statusCode =null)
128
{
129
return$this->storage->find($ip,$url,$limit,$method,$this->getTimestamp($start),$this->getTimestamp($end),$statusCode);
130
}