start with Collection Class

This commit is contained in:
Martz
2023-02-05 17:55:36 +01:00
parent 855c7c0c87
commit c8523b3b06
2 changed files with 20 additions and 3 deletions

17
src/Collection.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
namespace Pb;
class Collection
{
private $json;
public function __construct($data)
{
$this->json = $data;
}
public function authWithPassword(){
var_dump($this->json);
}
}