chore(tests): UT for ACL actions

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2023-11-16 06:49:25 +01:00
parent 2d56422d9c
commit efc606cb91
255 changed files with 1949 additions and 1577 deletions

View File

@@ -4,7 +4,7 @@
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2022, Rubén Domínguez nuxsmin@$syspass.org
* @copyright 2012-2023, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
@@ -37,21 +37,21 @@ interface XmlFileStorageInterface
public function load(string $node = ''): XmlFileStorageInterface;
/**
* @param mixed $data Data to be saved
* @param string $node
* @param mixed $data Data to be saved
* @param string $node
*
* @throws FileException
*/
public function save($data, string $node = ''): XmlFileStorageInterface;
public function getItems();
public function getItems(): mixed;
/**
* Returns the given path node value
*
* @throws \SP\Infrastructure\File\FileException
* @throws FileException
*/
public function getPathValue(string $path): string;
public function getFileHandler(): FileHandlerInterface;
}
}