Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace App\Exports\Sales\Invoices; use App\Exports\Sales\Invoices\Sheets\Invoic..

Decoded Output download

<?php

namespace App\Exports\Sales\Invoices;

use App\Exports\Sales\Invoices\Sheets\Invoices as Base;
use App\Exports\Sales\Invoices\Sheets\InvoiceItems;
use App\Exports\Sales\Invoices\Sheets\InvoiceItemTaxes;
use App\Exports\Sales\Invoices\Sheets\InvoiceHistories;
use App\Exports\Sales\Invoices\Sheets\InvoiceTotals;
use App\Exports\Sales\Invoices\Sheets\InvoiceTransactions;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;

class Invoices implements WithMultipleSheets
{
    use Exportable;

    public $ids;

    public function __construct($ids = null)
    {
        $this->ids = $ids;
    }

    public function sheets(): array
    {
        return [
            new Base($this->ids),
            new InvoiceItems($this->ids),
            new InvoiceItemTaxes($this->ids),
            new InvoiceHistories($this->ids),
            new InvoiceTotals($this->ids),
            new InvoiceTransactions($this->ids),
        ];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace App\Exports\Sales\Invoices;

use App\Exports\Sales\Invoices\Sheets\Invoices as Base;
use App\Exports\Sales\Invoices\Sheets\InvoiceItems;
use App\Exports\Sales\Invoices\Sheets\InvoiceItemTaxes;
use App\Exports\Sales\Invoices\Sheets\InvoiceHistories;
use App\Exports\Sales\Invoices\Sheets\InvoiceTotals;
use App\Exports\Sales\Invoices\Sheets\InvoiceTransactions;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;

class Invoices implements WithMultipleSheets
{
    use Exportable;

    public $ids;

    public function __construct($ids = null)
    {
        $this->ids = $ids;
    }

    public function sheets(): array
    {
        return [
            new Base($this->ids),
            new InvoiceItems($this->ids),
            new InvoiceItemTaxes($this->ids),
            new InvoiceHistories($this->ids),
            new InvoiceTotals($this->ids),
            new InvoiceTransactions($this->ids),
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 961d8d0b7c1dfdfe6e5903b37b75c0c7
Eval Count 0
Decode Time 100 ms