There is no license information available for the latest version (0.0.1) of this package.

PHP library inspired by Robert Penner's AS3 Signals.

Installs: 18

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/thispagecannotbefound/php-signals

0.0.1 2014-05-27 10:08 UTC

This package is not auto-updated.

Last update: 2025-10-07 11:44:20 UTC


README

PHP Signals & Slots library inspired by Robert Penner's AS3 Signals.

Usage

Basic Signal example:

$signal = new Signal();

$signal->add(function($value) {
	echo 'Received value: ' . $value;
});

$signal->dispatch('Hello World!');

// Output: "Received value: Hello World!"