MediaWiki  REL1_21
ScopedCallback.php
Go to the documentation of this file.
00001 <?php
00026 class ScopedCallback {
00028         protected $callback;
00029 
00033         public function __construct( Closure $callback ) {
00034                 $this->callback = $callback;
00035         }
00036 
00037         function __destruct() {
00038                 call_user_func( $this->callback );
00039         }
00040 }