/**
  * Checks if current project environment is a valid git repository
  * and if it is a studio playground repository
  * 
  * @return afResponse
  */
 protected function processCheckConfig()
 {
     $response = afResponseHelper::create();
     $afServiceClient = afStudioUtil::getAfServiceClient();
     if ($afServiceClient) {
         return $response->success(true);
     } else {
         return $response->success(false);
     }
 }