ackintosh/toumi

Library to include the legacy code.

1.1 2017-09-27 04:08 UTC

This package is auto-updated.

Last update: 2024-04-16 08:34:49 UTC


README

A library for including legacy php file.

Build Status

Usage

legacy.php

<?php
function hoge($arg)
{
    return 'hoge' . $arg;
}

somefunction(1234);

function fuga()
{
    $f = function () { echo 'fuga'; };
    call_user_func($f);
}

var_dump(hoge('hogehoge'));
exit;
<?php
// Only function declaration is included.
\Ackintosh\Toumi::load('legacy.php');

class LegacyTest extends PHPUnit_Framework_TestCase
{
    /**
     * @test
     */
    public function hoge()
    {
        $this->assertSame('hogefuga', hoge('fuga'));
    }
}

Author

Akihito Nakano