Skip to content

Commit

Permalink
nullable fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
Saifallak committed Jul 25, 2024
1 parent 937ed0b commit 3cf768c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/Cloudwa.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

class Cloudwa
{
protected string $sessionUuid;
protected ?string $sessionUuid;

protected string $message;
protected ?string $message;

protected string $file;
protected ?string $file;

protected array $phones;
protected ?array $phones;

private array $headers;

Expand Down
2 changes: 1 addition & 1 deletion src/CloudwaServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function configurePackage(Package $package): void
*/
$package
->name('cloudwa-api')
->hasConfigFile();
->hasConfigFile('cloudwa');
// ->hasViews()
}
}

0 comments on commit 3cf768c

Please sign in to comment.