115. /**
116. * Creates the default project key.
117. *
118. * @param string $fix = NULL
119. *
120. * @return string
121. */
122. public static function defaultProjectKey(?string $fix = NULL) : string
123. {
124. return md5(Request::getBaseURL(strtolower(CONTAINER_PROJECT)) . $fix);
125. }
126.
127. /**
128. * Get current project.
129. *
130. * @param void
131. *
132. * @return string
133. */
134. public static function getCurrentProject() : string