Update index to use PSR-2

This commit is contained in:
pxgamer
2018-05-29 15:44:23 +01:00
parent 2fded5d4eb
commit 28807ef9ca

View File

@@ -1,7 +1,7 @@
<?php <?php
/* /*
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2018 AroDev Copyright (c) 2018 AroDev
www.arionum.com www.arionum.com
@@ -24,14 +24,9 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE. OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
require_once("include/init.inc.php"); require_once("include/init.inc.php");
$block=new Block; $block = new Block();
$current=$block->current(); $current = $block->current();
echo "<h3>Arionum Node</h3>"; echo "<h3>Arionum Node</h3>";
echo "System check complete.<br><br> Current block: $current[height]"; echo "System check complete.<br><br> Current block: $current[height]";
?>