rector fixes

This commit is contained in:
Dennis Eichhorn 2023-09-24 14:56:44 +00:00
parent 69bea5b8ec
commit 8d2b015624
5 changed files with 6 additions and 8 deletions

View File

@ -202,9 +202,7 @@ final class ApiController extends Controller
$profile = new Profile($account);
$profile->birthday = new \DateTime($request->getDataString('birthday') ?? 'now');
$employee = new Employee($profile);
return $employee;
return new Employee($profile);
}
/**

View File

@ -141,7 +141,7 @@ class EmployeeEducationHistory implements \JsonSerializable
{
return [
'id' => $this->id,
'employee' => !\is_int($this->employee) ? $this->employee->id : $this->employee,
'employee' => \is_int($this->employee) ? $this->employee : $this->employee->id,
'educationTitle' => $this->educationTitle,
'passed' => $this->passed,
'score' => $this->score,

View File

@ -164,7 +164,7 @@ class EmployeeHistory implements \JsonSerializable
{
return [
'id' => $this->id,
'employee' => !\is_int($this->employee) ? $this->employee->id : $this->employee,
'employee' => \is_int($this->employee) ? $this->employee : $this->employee->id,
'unit' => $this->unit,
'department' => $this->department,
'position' => $this->position,

View File

@ -137,7 +137,7 @@ class EmployeeWorkHistory implements \JsonSerializable
{
return [
'id' => $this->id,
'employee' => !\is_int($this->employee) ? $this->employee->id : $this->employee,
'employee' => \is_int($this->employee) ? $this->employee : $this->employee->id,
'jobTitle' => $this->jobTitle,
'start' => $this->start,
'end' => $this->end,

View File

@ -381,7 +381,7 @@ function phpServe() : void
// Execute the command and store the process ID
$output = [];
echo \sprintf('Starting server...') . \PHP_EOL;
echo 'Starting server...' . \PHP_EOL;
echo \sprintf(' Current directory: %s', \getcwd()) . \PHP_EOL;
echo \sprintf(' %s', $command);
\exec($command, $output);
@ -406,7 +406,7 @@ function phpServe() : void
// Kill the web server when the process ends
\register_shutdown_function(function() use ($killCommand, $pid) : void {
echo \PHP_EOL . \sprintf('Stopping server...') . \PHP_EOL;
echo \PHP_EOL . 'Stopping server...' . \PHP_EOL;
echo \sprintf(' %s - Killing process with ID %d', \date('r'), $pid) . \PHP_EOL;
\exec($killCommand . $pid);
});