Skip to content

Commit

Permalink
Fix package name in config (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
tectiv3 authored and j3j5 committed Nov 28, 2019
1 parent 5c20709 commit 0203bd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Definitions/AbstractDefinition.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ public function __construct($attributes = [])

$this->attributes['formatVersion'] = $this->formatVersion;

$this->attributes['passTypeIdentifier'] = config('passbook.pass_type_identifier', '');
$this->attributes['organizationName'] = config('passbook.organization_name', '');
$this->attributes['teamIdentifier'] = config('passbook.team_identifier', '');
$this->attributes['passTypeIdentifier'] = config('passgenerator.pass_type_identifier', '');
$this->attributes['organizationName'] = config('passgenerator.organization_name', '');
$this->attributes['teamIdentifier'] = config('passgenerator.team_identifier', '');
}

public function setDescription($description)
Expand Down

0 comments on commit 0203bd2

Please sign in to comment.