Files
app
Console
Exceptions
Http
Parser
Providers
Home.php
ParsedHome.php
Parser.php
User.php
bootstrap
config
database
public
resources
routes
storage
tests
.drone.yml
.editorconfig
.env.example
.gitattributes
.gitignore
.styleci.yml
README.md
artisan
composer.json
composer.lock
package-lock.json
package.json
phpunit.xml
server.php
webpack.mix.js
MyHomeCollection/app/ParsedHome.php
2020-07-23 12:26:10 +02:00

30 lines
507 B
PHP

<?php
namespace App;
class ParsedHome
{
/** @var string */
public $title;
/** @var int */
public $price;
/** @var int */
public $surface;
/** @var int */
public $garden_surface;
/** @var int */
public $rooms;
/** @var string */
public $energy;
/** @var string */
public $ges;
/** @var string */
public $description;
/** @var string */
public $city;
/** @var string[] */
public $pictures;
/** @var ? */
public $map;
}