https://github.com/PressForward/pressforward
Raw File
Tip revision: 1227ece8e858dfb6fc4b02349192a7dec50d1868 authored by Boone B Gorges on 16 December 2022, 18:58:11 UTC
Fix folder query when querying for nominations.
Tip revision: 1227ece
Loader.php
<?php

namespace PressForward;

use SplClassLoader as JaxionClassLoader;

class Loader {

	function __construct() {

		$this->includes();
		$this->namespace_to();

	}

	function test() {
		echo 'This thing';
	}

	function includes() {
		$classLoader = new JaxionClassLoader( 'Intraxia\Jaxion', dirname( __FILE__ ) . '/Libraries/Jaxion/src' );
		$classLoader->filterFinalPath( 'Intraxia' . DIRECTORY_SEPARATOR . 'Jaxion' . DIRECTORY_SEPARATOR, '' );
		$classLoader->register();

	}

	function namespace_to() {

	}

}
back to top