21 lines
704 B
PHP
21 lines
704 B
PHP
<?php
|
|
|
|
namespace App\Enum;
|
|
|
|
/**
|
|
* What became of an application that was hard deleted.
|
|
*
|
|
* Applications are removed on the way to a placement just as they are removed when they come
|
|
* to nothing, and the row is gone either way. Without this, staffing somebody would read as
|
|
* an application being thrown away, and "how many applications did we lose" would count every
|
|
* success along with every loss.
|
|
*/
|
|
enum ApplicationDeletionOutcome: string
|
|
{
|
|
/** It became a placement: a disposition was created from it in the same flush. */
|
|
case DISPOSED = 'disposed';
|
|
|
|
/** Nobody was staffed from it - withdrawn by the teamer, deleted by the office, or purged. */
|
|
case REMOVED = 'removed';
|
|
}
|