Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix 1846 factory bei aufruf des wochenkalenders #91

Merged
merged 4 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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";
}
Loading