Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 41 additions & 41 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion tests/ErrorWarningTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

use PHPUnit\Framework\TestCase;

/** @internal */
/**
* @internal
*/
class ErrorWarningTest extends TestCase
{
public function testErrorMessage(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/FieldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
use Rancoud\Model\Field;
use Rancoud\Model\FieldException;

/** @internal */
/**
* @internal
*/
class FieldTest extends TestCase
{
protected array $inputs = [false, null, 'azerty', '-1', '10', 50.50];
Expand Down
4 changes: 3 additions & 1 deletion tests/HelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use PHPUnit\Framework\TestCase;
use Rancoud\Model\Helper;

/** @internal */
/**
* @internal
*/
class HelperTest extends TestCase
{
public function testIsTotalCount(): void
Expand Down
4 changes: 3 additions & 1 deletion tests/ImplementModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
use Rancoud\Model\Model;
use Rancoud\Model\ModelException;

/** @internal */
/**
* @internal
*/
class ImplementModel extends Model
{
protected array $parametersToRemove = ['param_to_remove'];
Expand Down
4 changes: 3 additions & 1 deletion tests/ImplementationErrorWarning.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

use Rancoud\Model\ErrorWarning;

/** @internal */
/**
* @internal
*/
class ImplementationErrorWarning extends ErrorWarning
{
public function addErrorMessage(string $error): void
Expand Down
4 changes: 3 additions & 1 deletion tests/ImplementationJsonOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

use Rancoud\Model\JsonOutput;

/** @internal */
/**
* @internal
*/
class ImplementationJsonOutput
{
use JsonOutput;
Expand Down
4 changes: 3 additions & 1 deletion tests/JsonOutputTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

use PHPUnit\Framework\TestCase;

/** @internal */
/**
* @internal
*/
class JsonOutputTest extends TestCase
{
protected array $data = [
Expand Down
4 changes: 3 additions & 1 deletion tests/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
use Rancoud\Model\FieldException;
use Rancoud\Model\ModelException;

/** @internal */
/**
* @internal
*/
class ModelTest extends TestCase
{
protected array $sgbds = [
Expand Down
4 changes: 3 additions & 1 deletion tests/MyCallback.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

namespace tests;

/** @internal */
/**
* @internal
*/
class MyCallback
{
/** @noinspection PhpUnusedParameterInspection */
Expand Down
4 changes: 3 additions & 1 deletion tests/MyRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
use Rancoud\Model\CustomRule;
use Rancoud\Model\FieldException;

/** @internal */
/**
* @internal
*/
class MyRule extends CustomRule
{
/** @throws FieldException */
Expand Down
Loading