Skip to content

Commit

Permalink
Merge pull request #91 from it-at-m/hotfix-1846_factory_bei_aufruf_de…
Browse files Browse the repository at this point in the history
…s_wochenkalenders

Hotfix 1846 factory bei aufruf des wochenkalenders
  • Loading branch information
ThomasAFink authored Jan 10, 2024
2 parents d68cd00 + 7ac8690 commit 6539160
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zmsdb/src/Zmsdb/ProcessStatusArchived.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace BO\Zmsdb;

use \BO\Zmsentities\ProcessArchived as Entity;
use \BO\Zmsentities\Processarchived as Entity;
use \BO\Zmsentities\Collection\ProcessList as Collection;

/**
Expand Down
3 changes: 2 additions & 1 deletion zmsentities/src/Zmsentities/ProcessArchived.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
namespace BO\Zmsentities;

use \BO\Zmsentities\Helper\Property;
use \BO\Zmsentities\Process;

/**
* @SuppressWarnings(Complexity)
* @SuppressWarnings(Coupling)
* @SuppressWarnings(Public)
*
*/
class ProcessArchived extends Process
class Processarchived extends Process
{
public static $schema = "processarchived.json";
}
16 changes: 16 additions & 0 deletions zmsentities/src/Zmsentities/Processarchived.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php
namespace BO\Zmsentities;

use \BO\Zmsentities\Helper\Property;
use \BO\Zmsentities\Process;

/**
* @SuppressWarnings(Complexity)
* @SuppressWarnings(Coupling)
* @SuppressWarnings(Public)
*
*/
class ProcessArchived extends Process
{
public static $schema = "processarchived.json";
}

0 comments on commit 6539160

Please sign in to comment.