instance

An instance is an object with a class. The class provides the definitions of the behavior of that object, while the object holds the specific data.

The creation of an instance, called instantiation, is done with the new keyword.

<?php

class x {
     private int $property;

     function __construct(int $arg) {
             $this->propety = $arg;
     }
}

?>

Documentation