apply more cs rules for php-cs

This commit is contained in:
2023-10-17 13:27:03 +02:00
parent 0b0cbed9db
commit bc2041cbdd
1485 changed files with 8169 additions and 9620 deletions

View File

@@ -68,10 +68,10 @@ interface SearchInterface
* take only the given parameters into account; the results from pagination
* should be ignored. (Most of the time, it should be the same).
*
* @param array $terms the string to search
* @param int $start the first result (for pagination)
* @param int $limit the number of result (for pagination)
* @param "html"|"json" $format The format for result
* @param array $terms the string to search
* @param int $start the first result (for pagination)
* @param int $limit the number of result (for pagination)
* @param "html"|"json" $format The format for result
*
* @return string|array a string if format is html, an array if format is json
*/
@@ -80,9 +80,6 @@ interface SearchInterface
/**
* indicate if the implementation supports the given domain.
*
* @param mixed $domain
* @param mixed $format
*
* @return bool
*/
public function supports($domain, $format);