- Empresa X (links e culturas são diferenciais)
- Nível desejado para a vaga (Estágio, Junior, Pleno, Senior).
- Descrição da vaga (ferramentas e metodologias que vai trabalhar de VERDADE)
- Faixa salarial (se possível)
- Modo de contratação (CLT, Freelance, PJ, etc)
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "precise32" | |
config.vm.box_url = "http://files.vagrantup.com/precise32.box" |
This file contains 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 | |
//verificação 1 | |
public function setNascimento($data) | |
{ | |
if(date("Y-m-d", strtotime($data)) != $data){ | |
throw new \InvalidArgumentException("Is not a valid date."); | |
} | |
} |
This file contains 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
$em->getConfiguration()->setMetadataDriverImpl( | |
new \Doctrine\ORM\Mapping\Driver\DatabaseDriver( | |
$em->getConnection()->getSchemaManager() | |
) | |
); | |
$cmf = new Doctrine\ORM\Tools\DisconnectedClassMetadataFactory(); | |
$cmf->setEntityManager($em); | |
$metadata = $cmf->getAllMetadata(); | |
$cme = new \Doctrine\ORM\Tools\Export\ClassMetadataExporter(); |