id); } public function testToArray() : void { $app = new App(); self::assertEquals( [ 'id' => 0, 'name' => '', 'type' => ApplicationType::WEB, 'status' => ApplicationStatus::NORMAL, ], $app->toArray() ); } public function testJsonSerialize() : void { $app = new App(); self::assertEquals( [ 'id' => 0, 'name' => '', 'type' => ApplicationType::WEB, 'status' => ApplicationStatus::NORMAL, ], $app->jsonSerialize() ); } }