PHP code example of solve-x / view-model
1. Go to this page and download the library: Download solve-x/view-model library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
solve-x / view-model example snippets
namespace App\ViewModels;
use SolveX\ViewModel\ViewModel;
class RegistrationViewModel extends ViewModel
{
/**
* @var string
*/
public $FirstName;
/**
* @var int
*/
public $Age;
}
namespace App\Controllers;
use App\ViewModels\RegistrationViewModel;
class UserController
{
public function register(RegistrationViewModel $model)
{
// At this point $model is ready to use.
// In case binding or validation fails, an exception is thrown during model construction.
// $model->FirstName
// $model->Age
}
}