Passed
Push — task/comments-api ( 6d7a22 )
by Yonathan
13:12
created
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.
app/Models/Lookup/ExperienceLevelTranslation.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\ExperienceLevel $experience_level
23 23
  */
24
-class ExperienceLevelTranslation extends BaseModel {
24
+class ExperienceLevelTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'experience_level_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function experience_level() {
31
+    public function experience_level(){
32 32
         return $this->belongsTo(\App\Models\Lookup\ExperienceLevel::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/JobTermTranslation.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\JobTerm $job_term
23 23
  */
24
-class JobTermTranslation extends BaseModel {
24
+class JobTermTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'job_term_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function job_term() {
31
+    public function job_term(){
32 32
         return $this->belongsTo(\App\Models\Lookup\JobTerm::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/CriteriaTypeTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\CriteriaType $criteria_type
23 23
  */
24
-class CriteriaTypeTranslation extends BaseModel {
24
+class CriteriaTypeTranslation extends BaseModel{
25 25
 
26 26
     protected $fillable = [];
27 27
 
28
-    public function criteria_type() {
28
+    public function criteria_type(){
29 29
         return $this->belongsTo(\App\Models\CriteriaType::class);
30 30
     }
31 31
 
Please login to merge, or discard this patch.
app/Models/Lookup/RelationshipTranslation.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\Relationship $relationship
23 23
  */
24
-class RelationshipTranslation extends BaseModel {
24
+class RelationshipTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'relationship_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function relationship() {
31
+    public function relationship(){
32 32
         return $this->belongsTo(\App\Models\Lookup\Relationship::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/SkillLevelTranslation.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\SkillLevel $skill_level
23 23
  */
24
-class SkillLevelTranslation extends BaseModel {
24
+class SkillLevelTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'skill_level_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function skill_level() {
31
+    public function skill_level(){
32 32
         return $this->belongsTo(\App\Models\Lookup\SkillLevel::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.