HhvmExceptionPatch
    
            
            in package
            
        
    
            
            implements
                            ClassPatchInterface                    
    
    
        
            Exception patch for HHVM to remove the stubs from special methods
Tags
Interfaces, Classes, Traits and Enums
- ClassPatchInterface
- Class patch interface.
Table of Contents
- apply() : void
- Removes special exception static methods from the doubled methods.
- getPriority() : int
- Returns patch priority, which determines when patch will be applied.
- supports() : bool
- Supports exceptions on HHVM.
Methods
apply()
Removes special exception static methods from the doubled methods.
    public
                    apply(ClassNode $node) : void
    
        Parameters
- $node : ClassNode
Return values
void —getPriority()
Returns patch priority, which determines when patch will be applied.
    public
                    getPriority() : int
    
    
    
        Return values
int —Priority number (higher - earlier)
supports()
Supports exceptions on HHVM.
    public
                    supports(ClassNode $node) : bool
    
        Parameters
- $node : ClassNode