uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
yiisoft
/
yii2-queue
/
src
/
gii
/
.
/
default
/
job.php
/
/
<?php /** * @var \yii\web\View $this * @var \yii\queue\gii\Generator $generator * @var string $jobClass * @var string $$ns * @var string $baseClass * @var string[] $interfaces * @var string[] $properties */ if ($interfaces) { $implements = 'implements ' . implode(', ', $interfaces); } else { $implements = ''; } echo "<?php\n"; ?> namespace <?= $ns ?>; /** * Class <?= $jobClass ?>. */ class <?= $jobClass ?> extends <?= $baseClass ?> <?= $implements ?> { <?php foreach ($properties as $property): ?> public $<?= $property ?>; <?php endforeach; ?> /** * @inheritdoc */ public function execute($queue) { } <?php if ($generator->retryable): ?> /** * @inheritdoc */ public function getTtr() { return 60; } /** * @inheritdoc */ public function canRetry($attempt, $error) { return $attempt < 3; } <?php endif; ?> }
/srv/users/craft4/apps/craft4-newsite-space/vendor/yiisoft/yii2-queue/src/gii/./default/job.php