blob: 1f2bec6373867366525758189037dcb716ff598c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
namespace app\controllers;
class MangalistController extends \lithium\action\Controller {
public function view($username)
{
$user = User::first('conditions' => compact('username'));
}
}
|