Passed
Branch feature/immutable-application-... (238d28)
by Grant
08:39
created
app/Models/JobPosterQuestionTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
  * 
21 21
  * @property \App\Models\JobPosterQuestion $job_poster_question
22 22
  */
23
-class JobPosterQuestionTranslation extends BaseModel {
23
+class JobPosterQuestionTranslation extends BaseModel{
24 24
 
25 25
     protected $casts = [
26 26
         'job_poster_question_id' => 'int'
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         'description'
31 31
     ];
32 32
 
33
-    public function job_poster_question() {
33
+    public function job_poster_question(){
34 34
         return $this->belongsTo(\App\Models\JobPosterQuestion::class);
35 35
     }
36 36
 
Please login to merge, or discard this patch.
app/Models/JobPosterKeyTaskTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  * 
20 20
  * @property \App\Models\JobPosterKeyTask $job_poster_key_task
21 21
  */
22
-class JobPosterKeyTaskTranslation extends BaseModel {
22
+class JobPosterKeyTaskTranslation extends BaseModel{
23 23
 
24 24
     protected $casts = [
25 25
         'job_poster_key_task_id' => 'int'
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         'description'
30 30
     ];
31 31
 
32
-    public function job_poster_key_task() {
32
+    public function job_poster_key_task(){
33 33
         return $this->belongsTo(\App\Models\JobPosterKeyTask::class);
34 34
     }
35 35
 
Please login to merge, or discard this patch.
app/Models/ManagerTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
  *
29 29
  * @property \App\Models\Manager $manager
30 30
  */
31
-class ManagerTranslation extends BaseModel {
31
+class ManagerTranslation extends BaseModel{
32 32
 
33 33
     protected $casts = [
34 34
         'manager_id' => 'int'
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         'learning_path'
47 47
     ];
48 48
 
49
-    public function manager() {
49
+    public function manager(){
50 50
         return $this->belongsTo(\App\Models\Manager::class);
51 51
     }
52 52
 
Please login to merge, or discard this patch.
app/Models/Lookup/LanguageRequirementTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\LanguageRequirement $language_requirement
23 23
  */
24
-class LanguageRequirementTranslation extends BaseModel {
24
+class LanguageRequirementTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'language_requirement_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function language_requirement() {
31
+    public function language_requirement(){
32 32
         return $this->belongsTo(\App\Models\Lookup\LanguageRequirement::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/SecurityClearanceTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\SecurityClearance $security_clearance
23 23
  */
24
-class SecurityClearanceTranslation extends BaseModel {
24
+class SecurityClearanceTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'security_clearance_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function security_clearance() {
31
+    public function security_clearance(){
32 32
         return $this->belongsTo(\App\Models\Lookup\SecurityClearance::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/CitizenshipDeclarationTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\CitizenshipDeclaration $citizenship_declaration
23 23
  */
24
-class CitizenshipDeclarationTranslation extends BaseModel {
24
+class CitizenshipDeclarationTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'citizenship_declaration_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function citizenship_declaration() {
31
+    public function citizenship_declaration(){
32 32
         return $this->belongsTo(\App\Models\Lookup\CitizenshipDeclaration::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/FileTypeTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\FileType $file_type
23 23
  */
24
-class FileTypeTranslation extends BaseModel {
24
+class FileTypeTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'file_type_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function file_type() {
31
+    public function file_type(){
32 32
         return $this->belongsTo(\App\Models\Lookup\FileType::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/ApplicationStatusTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\ApplicationStatus $application_status
23 23
  */
24
-class ApplicationStatusTranslation extends BaseModel {
24
+class ApplicationStatusTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'application_status_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function application_status() {
31
+    public function application_status(){
32 32
         return $this->belongsTo(\App\Models\Lookup\ApplicationStatus::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/ProvinceTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\Province $province
23 23
  */
24
-class ProvinceTranslation extends BaseModel {
24
+class ProvinceTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'province_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function province() {
31
+    public function province(){
32 32
         return $this->belongsTo(\App\Models\Lookup\Province::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.