JobPopping.php
TLDR
This file defines a class JobPopping
in the Illuminate\Queue\Events
namespace. It has a constructor that takes a $connectionName
parameter and sets it as a property of the class.
Classes
JobPopping
This class represents a job popping event. It has the following properties:
-
$connectionName
: The name of the connection associated with the event.
The constructor of this class takes a $connectionName
parameter and sets it as the value of the $connectionName
property.
<?php
namespace Illuminate\Queue\Events;
class JobPopping
{
/**
* The connection name.
*
* @var string
*/
public $connectionName;
/**
* Create a new event instance.
*
* @param string $connectionName
* @return void
*/
public function __construct($connectionName)
{
$this->connectionName = $connectionName;
}
}