/**
 * Get the active include paths
 *
 * @return  array
 *
 * @since   3.5
 */
public function getIncludePaths()
{
    if (empty($this->includePaths)) {
        $this->includePaths = $this->getDefaultIncludePaths();
    }
    return $this->includePaths;
}