Version of dependencies should be fixed
More information: https://insight.symfony.com/what-we-analyse/composer.unfixed_dependency_version
Unused method, property, variable or parameter
More information: https://insight.symfony.com/what-we-analyse/php.unused_local_variable_or_private_member
- $this->view->body = '';
- }
- public function render()
- {
- if (($status = $this->request->status()) >= 400) {
- return;
- }
- if ($this->route->params(0) == 'ajax') {
- $object = $this->route->params(1);
- $this->view->response = $this->{$object}->request($this->request);
Text files should end with a newline character 4
More information: https://insight.symfony.com/what-we-analyse/missing_e_o_l
- $this->request = $request;
- $this->view = $view;
- $this->layout = $layout;
- }
- }
- public function __set($name, $value = null)
- {
- throw new Exception('No can do...' . $name);
- }
- }
- public $attrs = [], $fields = [], $hidden = [], $button = [], $weight = [], $values = [], $fieldset = [];
- public $validate = [], $status, $result, $message, $callback, $expire;
- }
- class Status extends \phastr\Model
- {
- public $code, $message, $validation, $callback, $expire, $status;
- }