the browser-facing portion of osu!
at master 27 lines 519 B view raw
1<?php 2 3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 4// See the LICENCE file in the repository root for full licence text. 5 6namespace Tests\Jobs; 7 8use Illuminate\Bus\Queueable; 9use Illuminate\Contracts\Queue\ShouldQueue; 10 11class TestJob implements ShouldQueue 12{ 13 use Queueable; 14 15 public function __construct(private $name) 16 { 17 } 18 19 public function displayName() 20 { 21 return $this->name; 22 } 23 24 public function handle() 25 { 26 } 27}