linusshops/self-modifying-code

This package is abandoned and no longer maintained. No replacement package was suggested.

Runtime modification of class definitions

0.0.3 2017-05-10 19:59 UTC

This package is not auto-updated.

Last update: 2022-05-04 06:55:25 UTC


README

Build Status

Requires Runkit and Reflection

SMC provides a convenient way to reload functionality while you are in a REPL or debug console.

Ever test something in the console, and realize while you're debugging what needs to be changed? Normally, you'd have to terminate the session, losing any accumulated context from your console session. SMC allows you to reload a class or method definition in mid-execution (similar to REPL environments provided by lisp and clojure).

Due to a limitation in runkit, if you are currently executing a class, you cannot reload the whole thing. However, you can reload individual methods as well.

🔥🔥🔥🔥🔥🔥

This is ONLY intended to be used as a debugging aid or in a REPL environment.

If you are using this to implement functionality, you need to seriously re-evaluate your decisions.

🔥🔥🔥🔥🔥🔥

Installation

If runkit is not installed, install it with pecl install runkit.

Add linusshops/self-modifying-code to your composer.json.

Usage

All reload methods return a boolean indicating if SMC was able to redefine the requested identifier.

All reload methods are able to accept either a string class definition, or an instance of the class itself.

Reload a class

SMC::reload_class('SomeClassName')

Reload a class method

SMC::reload_method('SomeClassName', 'methodName')