- Conhecimento prático em HTML5 e CSS3 Responsivo
- Conhecimento avançado de JavaScript
- Desenvolvimento cross-plataforma e testes cross-browser
- Confortável trabalhando com o controle de versão (Git)
- Capacidade de trabalhar de forma independente com uma supervisão mínima
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
eminetto@MacBook-Air (master *) ~/Documents/Projects/planrockr/planrockr-backend: phpdbg -qrr ./vendor/bin/phpunit | |
PHPUnit 4.8.26 by Sebastian Bergmann and contributors. | |
............................................................... 63 / 173 ( 36%) | |
............................................................... 126 / 173 ( 72%) | |
............................................... | |
Time: 1.59 minutes, Memory: 278.00MB | |
OK (173 tests, 682 assertions) |
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
brew install php70 --with-phpdbg | |
brew install php70-apcu | |
brew install php70-imagick | |
brew install php70-intl | |
brew install php70-mcrypt | |
brew install --HEAD homebrew/php/php70-memcached | |
brew install php70-mongodb | |
brew install php70-pdo-pgsql | |
brew install php70-xdebug |
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
eminetto@MacBook-Air (master *) ~/Documents/Projects/planrockr/planrockr-backend: ./vendor/bin/phpunit | |
PHPUnit 4.8.26 by Sebastian Bergmann and contributors. | |
............................................................... 63 / 173 ( 36%) | |
............................................................... 126 / 173 ( 72%) | |
............................................... | |
Time: 22.26 minutes, Memory: 128.00MB | |
OK (173 tests, 682 assertions) |
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
eminetto@MacBook-Air (master) ~/Documents/Projects/planrockr/planrockr-backend: ./vendor/bin/phpunit | |
PHPUnit 4.8.26 by Sebastian Bergmann and contributors. | |
Warning: The Xdebug extension is not loaded | |
No code coverage will be generated. | |
............................................................... 63 / 173 ( 36%) | |
............................................................... 126 / 173 ( 72%) | |
............................................... | |
Time: 1.08 minutes, Memory: 120.00MB |
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
<logging> | |
<log type="coverage-clover" target="tests/_reports/logs/clover.xml"/> | |
<log type="coverage-html" target="tests/_reports/coverage" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70" /> | |
<log type="testdox-text" target="tests/_reports/testdox/executed.txt"/> | |
</logging> |
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
response, _ := transmitter.transmit(nfe, xml) | |
xml = transmitter.getNfeWithTransmissionResults() | |
result = transmitter.saveData(response, xml) |
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
response, err := transmitter.transmit(nfe, xml) | |
if err != nil { | |
panic("Error ") //tratamento de erro qualquer | |
} | |
xml = transmitter.getNfeWithTransmissionResults() | |
result = transmitter.saveData(response, xml) |
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 | |
$response = $this->transmitter->transmit($nfe, $xml); | |
$xml = $this->transmitter->getNfeWithTransmissionResults(); | |
$result = $this->transmitter->saveData($response, $xml); |
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 | |
public function unsubscribe($user, $category) | |
{ | |
if (!$this->isUserLockable($user)) { | |
return [ | |
'type' => 'error', | |
'message' => 'Algo deu errado. O usuário ' . $user['name'] . ' parece não ser passível de bloqueio.' | |
]; | |
} |