We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 607dca9 + 50defff commit a8480c4Copy full SHA for a8480c4
.gitignore
@@ -3,4 +3,7 @@ composer.phar
3
vendor/
4
5
# PHPUnit
6
-build/
+build/
7
+
8
+# Vagrant
9
+.vagrant
Vagrantfile
@@ -0,0 +1,9 @@
1
+Vagrant.configure("2") do |config|
2
+ config.vm.box = "puphpet/ubuntu1604-x64"
+ config.vm.provision "shell", inline: <<-SHELL
+ add-apt-repository ppa:ondrej/php
+ apt-get update
+ apt-get install -y php7.1 php7.1-xml php7.1-mbstring php7.1-zip composer
+ SHELL
+end
src/Unit/Timer.php
@@ -1,6 +1,5 @@
<?php
-
namespace SystemCtl\Unit;
use SystemCtl\Exception\CommandFailedException;
0 commit comments