1
0
Fork 0

Make BaseURL check/save transactional and make the whole process easier

This commit is contained in:
Philipp Holzer 2023-01-04 08:14:00 +01:00
commit c057954896
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
3 changed files with 59 additions and 146 deletions

View file

@ -41,8 +41,6 @@ interface ISetConfigValuesTransactionally
* @param mixed $value The value to store
*
* @return static the current instance
*
* @throws ConfigPersistenceException In case the persistence layer throws errors
*/
public function set(string $cat, string $key, $value): self;
@ -54,8 +52,6 @@ interface ISetConfigValuesTransactionally
*
* @return static the current instance
*
* @throws ConfigPersistenceException In case the persistence layer throws errors
*
*/
public function delete(string $cat, string $key): self;