Apply fixes from StyleCI
This commit is contained in:
parent
d3ed07c4a2
commit
4712ae7094
@ -8,12 +8,11 @@ class AppleNotification extends Model
|
||||
{
|
||||
public $guarded = [];
|
||||
|
||||
public static function storeNotification(String $notificationType, NotificationPayload $notificationPayload)
|
||||
public static function storeNotification(string $notificationType, NotificationPayload $notificationPayload)
|
||||
{
|
||||
return self::create([
|
||||
'type' => $notificationType,
|
||||
'payload' => serialize($notificationPayload),
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -2,8 +2,6 @@
|
||||
|
||||
namespace Appvise\AppStoreNotifications\Model;
|
||||
|
||||
|
||||
|
||||
class Receipt
|
||||
{
|
||||
private $originalTransactionId;
|
||||
@ -37,7 +35,6 @@ class Receipt
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static function createFromArray(array $receiptInfo)
|
||||
@ -75,7 +72,6 @@ class Receipt
|
||||
return $instance;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the value of bid.
|
||||
*/
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
namespace Appvise\AppStoreNotifications\Model;
|
||||
|
||||
|
||||
class RenewalInfo
|
||||
{
|
||||
private $autoRenewProductId;
|
||||
@ -16,7 +15,6 @@ class RenewalInfo
|
||||
private $gracePeriodExpiresDateMs;
|
||||
private $gracePeriodExpiresDatePst;
|
||||
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
}
|
||||
@ -33,8 +31,10 @@ class RenewalInfo
|
||||
$instance->priceConsentStatus = $pendingRenewalInfo['price_consent_status'] ?? null;
|
||||
$instance->gracePeriodExpiresDate = $pendingRenewalInfo['grace_period_expires_date'] ?? null;
|
||||
$instance->gracePeriodExpiresDatePst = $pendingRenewalInfo['grace_period_expires_date_pst'] ?? null;
|
||||
|
||||
return $instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the value of autoRenewProductId.
|
||||
*/
|
||||
|
@ -73,5 +73,4 @@ class IntegrationTest extends TestCase
|
||||
|
||||
Queue::assertNotPushed(DummyJob::class);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -2,12 +2,12 @@
|
||||
|
||||
namespace Appvise\AppStoreNotifications\Tests;
|
||||
|
||||
use Appvise\AppStoreNotifications\NotificationsServiceProvider;
|
||||
use Exception;
|
||||
use CreateAppleNotificationsTable;
|
||||
use Illuminate\Foundation\Exceptions\Handler;
|
||||
use Illuminate\Contracts\Debug\ExceptionHandler;
|
||||
use Orchestra\Testbench\TestCase as OrchestraTestCase;
|
||||
use CreateAppleNotificationsTable;
|
||||
use Appvise\AppStoreNotifications\NotificationsServiceProvider;
|
||||
|
||||
abstract class TestCase extends OrchestraTestCase
|
||||
{
|
||||
@ -71,5 +71,4 @@ abstract class TestCase extends OrchestraTestCase
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
return json_decode('{
|
||||
"environment": "Sandbox",
|
||||
"notification_type": "INITIAL_BUY",
|
||||
@ -62,7 +63,6 @@ return json_decode('{
|
||||
}', true
|
||||
);
|
||||
|
||||
|
||||
//{
|
||||
// "environment": "Sandbox",
|
||||
// "notification_type": "INITIAL_BUY",
|
||||
|
Loading…
x
Reference in New Issue
Block a user