Jarves\ORM\Builder\Builder::bootBuildTime PHP Method

bootBuildTime() public method

Loads all objects and
public bootBuildTime ( )
    public function bootBuildTime()
    {
        $this->objects = [];
        foreach ($this->getJarves()->getConfigs() as $bundleConfig) {
            if ($objects = $bundleConfig->getObjects()) {
                foreach ($objects as $object) {
                    $this->objects[strtolower($object->getKey())] = $object;
                    //                    $object->bootBuildTime($this->getJarves()->getConfigs());
                }
            }
        }
        //        foreach ($this->objects as $object) {
        //            $object->bootBuildTime($this->getJarves()->getConfigs());
        //        }
    }