PHP code example of dczajkowski / auth-tests
1. Go to this page and download the library: Download dczajkowski/auth-tests 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/ */
dczajkowski / auth-tests example snippets
# make:auth-tests
public function testUserCanLogout()
{
//
}
# make:auth-tests --snake-case
public function test_user_can_logout()
{
//
}
# make:auth-tests --annotation
/** @test */
public function userCanLogout()
{
//
}
# make:auth-tests --public
function testUserCanLogout()
{
//
}
# make:auth-tests --curly
public function testUserCanLogout() {
//
}
# make:auth-tests -caps # or --zonda
/** @test */
function user_can_logout() {
//
}
bash
> composer