blink\http\Response::with PHP Method

with() public method

public with ( $data )
    public function with($data)
    {
        $this->data = $data;
        return $this;
    }

Usage Example

Example #1
0
 public function compute($a, $b, Response $response)
 {
     $response->with($a * $b);
     return $response;
 }