diff options
| -rw-r--r-- | PHPINFO | 5 | ||||
| -rw-r--r-- | REFLECTION | 166 | 
2 files changed, 167 insertions, 4 deletions
@@ -1,8 +1,8 @@  psr -Version => 0.5.1 -Released => 2018-10-29 +Version => 0.6.0 +Released => 2018-11-11  Authors => John Boehr <jbboehr@gmail.com> (lead)  PSR-3 Log Version => 1.0.0  PSR-6 Cache Version => 1.0.0 @@ -13,3 +13,4 @@ PSR-15 HTTP Handlers (Server Handler) => 1.0.0  PSR-15 HTTP Handlers (Middleware) => 1.0.0  PSR-16 Simple Cache Version => 1.0.0  PSR-17 HTTP Factories => 1.0.0 +PSR-18 HTTP Client => 1.0.0 @@ -1,10 +1,10 @@ -Extension [ <persistent> extension #127 psr version 0.5.1 ] { +Extension [ <persistent> extension #128 psr version 0.6.0 ] {    - Dependencies {      Dependency [ spl (Required) ]    } -  - Classes [37] { +  - Classes [41] {      Interface [ <internal:psr> interface Psr\Cache\CacheException ] {        - Constants [0] { @@ -2110,6 +2110,168 @@ Extension [ <persistent> extension #127 psr version 0.5.1 ] {          }        }      } + +    Interface [ <internal:psr> interface Psr\Http\Client\ClientInterface ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [0] { +      } + +      - Properties [0] { +      } + +      - Methods [1] { +        Method [ <internal:psr> abstract public method sendRequest ] { + +          - Parameters [1] { +            Parameter #0 [ <required> Psr\Http\Message\RequestInterface $request ] +          } +          - Return [ Psr\Http\Message\ResponseInterface ] +        } +      } +    } + +    Interface [ <internal:psr> interface Psr\Http\Client\ClientExceptionInterface extends Throwable ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [0] { +      } + +      - Properties [0] { +      } + +      - Methods [8] { +        Method [ <internal:Core, inherits Throwable> abstract public method getMessage ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getCode ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getFile ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getLine ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getTrace ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getPrevious ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getTraceAsString ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method __toString ] { +        } +      } +    } + +    Interface [ <internal:psr> interface Psr\Http\Client\NetworkExceptionInterface extends Psr\Http\Client\ClientExceptionInterface, Throwable ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [0] { +      } + +      - Properties [0] { +      } + +      - Methods [9] { +        Method [ <internal:psr> abstract public method getRequest ] { + +          - Parameters [0] { +          } +          - Return [ Psr\Http\Message\RequestInterface ] +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getMessage ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getCode ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getFile ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getLine ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getTrace ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getPrevious ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getTraceAsString ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method __toString ] { +        } +      } +    } + +    Interface [ <internal:psr> interface Psr\Http\Client\RequestExceptionInterface extends Psr\Http\Client\ClientExceptionInterface, Throwable ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [0] { +      } + +      - Properties [0] { +      } + +      - Methods [9] { +        Method [ <internal:psr> abstract public method getRequest ] { + +          - Parameters [0] { +          } +          - Return [ Psr\Http\Message\RequestInterface ] +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getMessage ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getCode ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getFile ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getLine ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getTrace ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getPrevious ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method getTraceAsString ] { +        } + +        Method [ <internal:Core, inherits Throwable> abstract public method __toString ] { +        } +      } +    }    }  }  | 
