Last active
August 29, 2015 14:02
-
-
Save drgomesp/852b7afe7a270958c22a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class DesvioPadrao | |
{ | |
public function media(); | |
public function somaQuadradoDesvio(); | |
public function desvioPadraoPopulacional(); | |
public function desvioPadraoAmostral(); | |
} | |
class Upload | |
{ | |
public function __construct($definePath, $path = 'arquivos/'); | |
public function upload($arq = 'arquivo'); | |
public function diretorio(); | |
} | |
class TransformaCsvEmArray | |
{ | |
private function setArquivoCsv($arquivo); | |
public function transformaCsvEmArray(); | |
private function montaCabecalhoEConteudo(); | |
} | |
class TransformaCabecalhoCsvEmArray | |
{ | |
public function transformaCabecalhoCsvEmArray($arquivo); | |
} | |
class UserController | |
{ | |
public function before(); | |
public function getAction(); | |
public function after(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment