mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-08 01:06:43 +02:00
refactor: add rector to enforce type declarations, code quality + style and remove dead code
- update CI process to include quality stage (tests + code review) - add captainhook to install git pre-commit & pre-push hooks - remove .devcontainer Dockerfile to use project's docker-compose services: all services can now be started automatically using vscode - update docs/setup-development.md
This commit is contained in:
parent
a54a5964c3
commit
5c5c6da4be
302 changed files with 9802 additions and 4674 deletions
|
|
@ -1,13 +1,16 @@
|
|||
<?php
|
||||
|
||||
class ExampleSessionTest extends \Tests\Support\SessionTestCase
|
||||
namespace Tests\Session;
|
||||
|
||||
use Tests\Support\SessionTestCase;
|
||||
class ExampleSessionTest extends SessionTestCase
|
||||
{
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
public function testSessionSimple()
|
||||
public function testSessionSimple(): void
|
||||
{
|
||||
$this->session->set('logged_in', 123);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue