Drop class Icinga\Module\Icingadb\Model\Behavior\BoolCast

This commit is contained in:
Johannes Meyer 2025-11-14 14:45:13 +01:00
parent 3c7228686c
commit 555f1417bd
2 changed files with 2 additions and 12 deletions

View file

@ -12,6 +12,8 @@ If you are upgrading across multiple versions, make sure to follow the steps for
Icinga DB Web v1.1](#upgrading-to-icinga-db-web-v11) for details).
* Modules with support for IDO and Icinga DB will now default to use Icinga DB.
* The accompanying endpoint `icingadb/migrate/monitoring-url` has been removed.
* The class `Icinga\Module\Icingadb\Model\Behavior\BoolCast` has been removed.
* Use `\ipl\Orm\Behavior\BoolCast` instead.
## Upgrading to Icinga DB Web v1.2

View file

@ -1,12 +0,0 @@
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Model\Behavior;
/**
* @deprecated Use {@see \ipl\Orm\Behavior\BoolCast} instead. This will be removed with version 1.3.0
*/
class BoolCast extends \ipl\Orm\Behavior\BoolCast
{
}