3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-02-11 12:00:53 +01:00

22 lines
428 B
Perl
Raw Normal View History

2020-10-23 00:44:43 -07:00
#!/usr/bin/perl
2021-07-10 15:00:22 -07:00
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
# SPDX-License-Identifier: MIT
2020-10-23 00:44:43 -07:00
use warnings;
use strict;
package Languages::php;
use parent 'Languages::_default';
2020-10-23 00:44:43 -07:00
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.php';
$self->{execfile} = 'prog.php';
$self->{default_options} = '';
$self->{cmdline} = 'php $options $sourcefile';
}
1;