for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ajax\semantic\widgets\business\user;
class UserModel {
protected $login="abc";
protected $password="0000";
public function getLogin() {
return $this->login;
}
public function setLogin($login) {
$this->login=$login;
return $this;
public function getPassword() {
return $this->password;
public function setPassword($password) {
$this->password=$password;