Moved all old tests to another folder
This commit is contained in:
parent
960770d73f
commit
2ad6dfabab
15 changed files with 8 additions and 8 deletions
|
@ -2,10 +2,10 @@
|
||||||
|
|
||||||
/** @noinspection PhpMissingFieldTypeInspection */
|
/** @noinspection PhpMissingFieldTypeInspection */
|
||||||
|
|
||||||
namespace ExampleLibrary;
|
namespace old_tests\example_project\src\ExampleLibrary;
|
||||||
|
|
||||||
use ExampleLibrary\Exceptions\FileNotFoundException;
|
use old_tests\example_project\src\ExampleLibrary\Exceptions\FileNotFoundException;
|
||||||
use ExampleLibrary\Objects\Person;
|
use old_tests\example_project\src\ExampleLibrary\Objects\Person;
|
||||||
|
|
||||||
class ExampleLibrary
|
class ExampleLibrary
|
||||||
{
|
{
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
*
|
*
|
||||||
* @param int $amount
|
* @param int $amount
|
||||||
* @return array
|
* @return array
|
||||||
* @throws Exceptions\InvalidNameException
|
* @throws \old_tests\example_project\src\ExampleLibrary\Exceptions\InvalidNameException
|
||||||
*/
|
*/
|
||||||
public function generatePeople(int $amount=10): array
|
public function generatePeople(int $amount=10): array
|
||||||
{
|
{
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
/** @noinspection PhpPropertyOnlyWrittenInspection */
|
/** @noinspection PhpPropertyOnlyWrittenInspection */
|
||||||
|
|
||||||
namespace ExampleLibrary\Exceptions;
|
namespace old_tests\example_project\src\ExampleLibrary\Exceptions;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Throwable;
|
use Throwable;
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
/** @noinspection PhpPropertyOnlyWrittenInspection */
|
/** @noinspection PhpPropertyOnlyWrittenInspection */
|
||||||
|
|
||||||
namespace ExampleLibrary\Exceptions;
|
namespace old_tests\example_project\src\ExampleLibrary\Exceptions;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Throwable;
|
use Throwable;
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace ExampleLibrary\Objects;
|
namespace old_tests\example_project\src\ExampleLibrary\Objects;
|
||||||
|
|
||||||
use ExampleLibrary\Exceptions\InvalidNameException;
|
use old_tests\example_project\src\ExampleLibrary\Exceptions\InvalidNameException;
|
||||||
|
|
||||||
class Person
|
class Person
|
||||||
{
|
{
|
Loading…
Add table
Reference in a new issue