Jarves\ORM\Builder\Builder::boot PHP Method

boot() public method

Checks if at least one orm builder needs a build and triggers the build then.
public boot ( )
    public function boot()
    {
        if ($this->needsBuild()) {
            $this->build();
        }
    }