Passed
Push — feature/immutable-application-... ( d4dc87...b29460 )
by Grant
08:27
created
app/Models/Lookup/ReviewStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * Acessors:
17 17
  * @property string $translation
18 18
  */
19
-class ReviewStatus extends BaseModel {
19
+class ReviewStatus extends BaseModel{
20 20
 
21 21
     protected $fillable = [];
22 22
 
Please login to merge, or discard this patch.
app/Models/Lookup/JobTermTranslation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 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'
Please login to merge, or discard this patch.
app/Models/Lookup/SkillType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
  *
15 15
  * @property \Illuminate\Database\Eloquent\Collection $skills
16 16
  */
17
-class SkillType extends BaseModel {
17
+class SkillType extends BaseModel{
18 18
 
19 19
     protected $fillable = [
20 20
         'name'
Please login to merge, or discard this patch.
app/Models/Lookup/PreferredLanguage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  * @property \Illuminate\Database\Eloquent\Collection $job_applications
16 16
  *
17 17
  */
18
-class PreferredLanguage extends BaseModel {
18
+class PreferredLanguage extends BaseModel{
19 19
 
20 20
     protected $fillable = [];
21 21
 
Please login to merge, or discard this patch.
app/Models/Lookup/RelationshipTranslation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 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'
Please login to merge, or discard this patch.
app/Models/Lookup/SkillLevelTranslation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 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'
Please login to merge, or discard this patch.
app/Models/Lookup/AssessmentTypeTranslation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
  *
22 22
  * @property \App\Models\Lookup\AssessmentType $assessment_type
23 23
  */
24
-class AssessmentTypeTranslation extends BaseModel {
24
+class AssessmentTypeTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'id' => 'int',
Please login to merge, or discard this patch.
database/factories/RatingGuideQuestionFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 use App\Models\RatingGuideQuestion;
6 6
 use App\Models\JobPoster;
7 7
 
8
-$factory->define(RatingGuideQuestion::class, function (Faker\Generator $faker) {
8
+$factory->define(RatingGuideQuestion::class, function(Faker\Generator $faker) {
9 9
     return [
10
-        'job_poster_id' => function () {
10
+        'job_poster_id' => function() {
11 11
             return factory(JobPoster::class)->create()->id;
12 12
         },
13 13
         'assessment_type_id' => AssessmentType::inRandomOrder()->first()->id,
Please login to merge, or discard this patch.
database/factories/CriteriaFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
8 8
 
9 9
 $faker_fr = Faker\Factory::create('fr');
10 10
 
11
-$factory->define(Criteria::class, function (Faker\Generator $faker) use ($faker_fr) {
11
+$factory->define(Criteria::class, function(Faker\Generator $faker) use ($faker_fr) {
12 12
     return [
13 13
         'criteria_type_id' => CriteriaType::inRandomOrder()->first()->id,
14
-        'job_poster_id' => function () {
14
+        'job_poster_id' => function() {
15 15
             return factory(JobPoster::class)->create()->id;
16 16
         },
17 17
         'skill_id' => Skill::inRandomOrder()->first()->id,
Please login to merge, or discard this patch.