This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "loja 1", | |
| "zips": [ | |
| { | |
| "start": 100, | |
| "end": 150 | |
| }, | |
| { | |
| "start": 700, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{"name":"admin-on-rest","commits":[{"sha":"7ccf18b86328d5eb527d5cd803bca97b03640c6d","message":"Merge-pull-request-1409-from-zifnab87-master","author":{"name":"Gildas Garcia","email":"gildas.garcia@gmail.com"},"date":"Tue, 23 Jan 2018 15:03:41 +0100"},{"sha":"7659f9a6006f4742f47f4daf023b65f14162ef6a","message":"change-extraction-of-status-for-AUTH_ERROR","author":{"name":"Michail Michailidis","email":"zifnab87@users.noreply.github.com"},"date":"Tue, 23 Jan 2018 15:54:25 +0200"},{"sha":"22293d388d2384a142e6639c6a45077b04ec6453","message":"Bump-version-to-1.3.4","author":{"name":"Francois Zaninotto","email":"fzaninotto@gmail.com"},"date":"Mon, 22 Jan 2018 18:13:16 +0100"},{"sha":"37c491b69d9dfd95470e14e001247bea30b1bdd4","message":"Updated-Changelog-1.3.4","author":{"name":"gildas","email":"gildas.garcia@gmail.com"},"date":"Mon, 22 Jan 2018 17:34:47 +0100"},{"sha":"d40352d45b9892106296801dba14b8f4dea326a9","message":"Merge-pull-request-1383-from-marmelab-fix_title_update","author":{"name":"Francois Zaninotto", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| var_dump(1234); // número decimal | |
| var_dump(-123); // um número negativo | |
| var_dump(0123); // número octal (equivalente a 83 em decimal) | |
| var_dump(0x1A); // número hexadecimal (equivalente a 26 em decimal) | |
| var_dump(0b11111111); // número binário (equivalente ao 255 decimal) | |
| var_dump(1234); // número decimal | |
| var_dump(-123); // um número negativo | |
| var_dump(0123); // número octal (equivalente a 83 em decimal) | |
| var_dump(0x1A); // número hexadecimal (equivalente a 26 em decimal) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| var_dump(True); | |
| var_dump(False); | |
| var_dump(true); | |
| var_dump(false); | |
| var_dump(TrUe); | |
| var_dump(fAlSe) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Este é um comentário muito foda q vai explicar tudo abaixo | |
| // Mentira nem vai nada não | |
| echo "He4rtDevs <3"; | |
| // Será que isso vai ser interpretado? | |
| // To com fome |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| var_dump("Olá"); | |
| var_dump(123); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| echo "Olá"; // Olá | |
| echo 123; // 123 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Http\Controllers; | |
| use App\Entities\Auth\AccessLog; | |
| use Illuminate\Http\Request; | |
| use Illuminate\Support\Facades\Auth; | |
| use Tymon\JWTAuth\Facades\JWTAuth; | |
| class AuthController extends Controller | |
| { | |
| // Iremos chamar a autenticação da API em todas | |
| // as funções desse Controller exceto no Login. |
NewerOlder