Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions b8/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ class Application
protected $controller;

/**
* @var b8\Http\Request
* @var \b8\Http\Request
*/
protected $request;

/**
* @var b8\Http\Response
* @var \b8\Http\Response
*/
protected $response;

/**
* @var b8\Config
* @var \b8\Config
*/
protected $config;

Expand Down
12 changes: 6 additions & 6 deletions b8/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@
abstract class Controller
{
/**
* @var b8\Http\Request
* @var \b8\Http\Request
*/
protected $request;

/**
* @var b8\Http\Response
* @var \b8\Http\Response
*/
protected $response;

/**
* @var b8\Config
* @var \b8\Config
*/
protected $config;

/**
* @var b8\View
* @var \b8\View
*/
protected $controllerView;

/**
* @var b8\View
* @var \b8\View
*/
protected $view;

Expand All @@ -60,7 +60,7 @@ public function hasAction($name)

/**
* Handles an action on this controller and returns a Response object.
* @return b8\Http\Response
* @return \b8\Http\Response
*/
public function handleAction($action, $actionParams)
{
Expand Down
12 changes: 6 additions & 6 deletions b8/Registry.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
}

/**
* b8\Registry is now deprecated in favour of using the following classes:
* @see b8\Http\Request
* @see b8\Http\Response
* @see b8\Config
* \b8\Registry is now deprecated in favour of using the following classes:
* @see \b8\Http\Request
* @see \b8\Http\Response
* @see \b8\Config
* @deprecated
*/
class Registry
Expand All @@ -24,12 +24,12 @@ class Registry
protected static $instance;

/**
* @var b8\Config
* @var \b8\Config
*/
protected $config;

/**
* @var b8\Http\Request
* @var \b8\Http\Request
*/
protected $request;

Expand Down