forked from mjphaynes/php-resque
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloWorld.php
More file actions
31 lines (28 loc) · 764 Bytes
/
HelloWorld.php
File metadata and controls
31 lines (28 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* This file is part of the php-resque package.
*
* (c) Michael Haynes <mike@mjphaynes.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* This job prints out some text
*
* @author Michael Haynes <mike@mjphaynes.com>
*/
class HelloWorld
{
public function perform($args)
{
$text = <<<TEXT
__ __ ____ _ __ __ __ __
/ / / /__ / / /___ | | / /___ _____/ /___/ / / /
/ /_/ / _ \/ / / __ \ | | /| / / __ \/ ___/ / __ / / /
/ __ / __/ / / /_/ / | |/ |/ / /_/ / / / / /_/ / /_/
/_/ /_/\___/_/_/\____/ |__/|__/\____/_/ /_/\__,_/ (_)
TEXT;
echo $text;
}
}