whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Transformers
/
Upload File:
files >> //home/qbizpnmr/arif.umairtax.com/app/Transformers/GatewayTransformer.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\Transformers; use App\Models\Gateway; use App\Utils\Traits\MakesHash; /** * class ClientTransformer. */ class GatewayTransformer extends EntityTransformer { use MakesHash; protected array $defaultIncludes = [ ]; /** * @var array */ protected array $availableIncludes = [ ]; /** * @param Gateway $gateway * @return array */ public function transform(Gateway $gateway) { return [ 'id' => $this->encodePrimaryKey($gateway->id), 'name' => (string) $gateway->name ?: '', 'key' => (string) $gateway->key ?: '', 'provider' => (string) $gateway->provider ?: '', 'visible' => (bool) $gateway->visible, 'sort_order' => (int) $gateway->sort_order, 'default_gateway_type_id' => (string) $gateway->default_gateway_type_id, 'site_url' => (string) $gateway->site_url ?: '', 'is_offsite' => (bool) $gateway->is_offsite, 'is_secure' => (bool) $gateway->is_secure, 'fields' => (string) $gateway->fields ?: '', 'updated_at' => (int) $gateway->updated_at, 'created_at' => (int) $gateway->created_at, 'options' => $gateway->getMethods(), ]; } }
Copyright ©2021 || Defacer Indonesia