blob: b59e49231339a6214df56fde607cb6ef3fabbb43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace FlatFileForms\Plugins\SimplePlugin;
class Plugin
{
public function __construct()
{
if (rand(1, 2) === 2) {
echo "Simple Plugin output: <pre>";
var_dump($_ENV);
}
}
}
|