PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
spatie
/
laravel-newsletter
/
src
<?php namespace Spatie\Newsletter; class NewsletterList { /** @var string */ public $name; /** @var array */ public $properties = []; public function __construct(string $name, array $properties) { $this->name = $name; $this->properties = $properties; } public function getId(): string { return $this->properties['id']; } public function getName(): string { return $this->name; } public function getMarketingPermission(string $key): string { return $this->properties['marketing_permissions'][$key]; } }
[+]
Exceptions
[-] Newsletter.php
[edit]
[-] NewsletterList.php
[edit]
[+]
..
[-] NullDriver.php
[edit]
[-] NewsletterListCollection.php
[edit]
[-] NewsletterFacade.php
[edit]
[-] NewsletterPermissions.php
[edit]
[-] NewsletterServiceProvider.php
[edit]