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

@@ -12,26 +12,25 @@ declare(strict_types=1);
namespace Chill\DocStoreBundle\Service;
use Chill\DocStoreBundle\Entity\StoredObject;
use DateTimeInterface;
interface StoredObjectManagerInterface
{
public function getLastModified(StoredObject $document): DateTimeInterface;
public function getLastModified(StoredObject $document): \DateTimeInterface;
/**
* Get the content of a StoredObject.
*
* @param StoredObject $document The document.
* @param StoredObject $document the document
*
* @return string The retrieved content in clear.
* @return string the retrieved content in clear
*/
public function read(StoredObject $document): string;
/**
* Set the content of a StoredObject.
*
* @param StoredObject $document The document.
* @param $clearContent The content to store in clear.
* @param StoredObject $document the document
* @param $clearContent The content to store in clear
*/
public function write(StoredObject $document, string $clearContent): void;
}