!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/laravel/framework/src/Illuminate/Notifications/   drwxr-xr-x
Free 13.03 GB of 57.97 GB (22.47%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     SendQueuedNotifications.php (4.38 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Notifications;

use 
Illuminate\Bus\Queueable;
use 
Illuminate\Contracts\Queue\ShouldBeEncrypted;
use 
Illuminate\Contracts\Queue\ShouldQueue;
use 
Illuminate\Database\Eloquent\Collection as EloquentCollection;
use 
Illuminate\Database\Eloquent\Model;
use 
Illuminate\Queue\InteractsWithQueue;
use 
Illuminate\Queue\SerializesModels;
use 
Illuminate\Support\Collection;

class 
SendQueuedNotifications implements ShouldQueue
{
    use 
InteractsWithQueueQueueableSerializesModels;

    
/**
     * The notifiable entities that should receive the notification.
     *
     * @var \Illuminate\Support\Collection
     */
    
public $notifiables;

    
/**
     * The notification to be sent.
     *
     * @var \Illuminate\Notifications\Notification
     */
    
public $notification;

    
/**
     * All of the channels to send the notification to.
     *
     * @var array
     */
    
public $channels;

    
/**
     * The number of times the job may be attempted.
     *
     * @var int
     */
    
public $tries;

    
/**
     * The number of seconds the job can run before timing out.
     *
     * @var int
     */
    
public $timeout;

    
/**
     * Indicates if the job should be encrypted.
     *
     * @var bool
     */
    
public $shouldBeEncrypted false;

    
/**
     * Create a new job instance.
     *
     * @param  \Illuminate\Notifications\Notifiable|\Illuminate\Support\Collection  $notifiables
     * @param  \Illuminate\Notifications\Notification  $notification
     * @param  array|null  $channels
     * @return void
     */
    
public function __construct($notifiables$notification, array $channels null)
    {
        
$this->channels $channels;
        
$this->notification $notification;
        
$this->notifiables $this->wrapNotifiables($notifiables);
        
$this->tries property_exists($notification'tries') ? $notification->tries null;
        
$this->timeout property_exists($notification'timeout') ? $notification->timeout null;
        
$this->afterCommit property_exists($notification'afterCommit') ? $notification->afterCommit null;
        
$this->shouldBeEncrypted $notification instanceof ShouldBeEncrypted;
    }

    
/**
     * Wrap the notifiable(s) in a collection.
     *
     * @param  \Illuminate\Notifications\Notifiable|\Illuminate\Support\Collection  $notifiables
     * @return \Illuminate\Support\Collection
     */
    
protected function wrapNotifiables($notifiables)
    {
        if (
$notifiables instanceof Collection) {
            return 
$notifiables;
        } elseif (
$notifiables instanceof Model) {
            return 
EloquentCollection::wrap($notifiables);
        }

        return 
Collection::wrap($notifiables);
    }

    
/**
     * Send the notifications.
     *
     * @param  \Illuminate\Notifications\ChannelManager  $manager
     * @return void
     */
    
public function handle(ChannelManager $manager)
    {
        
$manager->sendNow($this->notifiables$this->notification$this->channels);
    }

    
/**
     * Get the display name for the queued job.
     *
     * @return string
     */
    
public function displayName()
    {
        return 
get_class($this->notification);
    }

    
/**
     * Call the failed method on the notification instance.
     *
     * @param  \Throwable  $e
     * @return void
     */
    
public function failed($e)
    {
        if (
method_exists($this->notification'failed')) {
            
$this->notification->failed($e);
        }
    }

    
/**
     * Get the number of seconds before a released notification will be available.
     *
     * @return mixed
     */
    
public function backoff()
    {
        if (! 
method_exists($this->notification'backoff') && ! isset($this->notification->backoff)) {
            return;
        }

        return 
$this->notification->backoff ?? $this->notification->backoff();
    }

    
/**
     * Get the expiration for the notification.
     *
     * @return mixed
     */
    
public function retryUntil()
    {
        if (! 
method_exists($this->notification'retryUntil') && ! isset($this->notification->retryUntil)) {
            return;
        }

        return 
$this->notification->retryUntil ?? $this->notification->retryUntil();
    }

    
/**
     * Prepare the instance for cloning.
     *
     * @return void
     */
    
public function __clone()
    {
        
$this->notifiables = clone $this->notifiables;
        
$this->notification = clone $this->notification;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0047 ]--