Skip to content

Instantly share code, notes, and snippets.

@migueleliasweb
Last active August 29, 2015 14:03
Show Gist options
  • Save migueleliasweb/cbd6033fa6406f664e24 to your computer and use it in GitHub Desktop.
Save migueleliasweb/cbd6033fa6406f664e24 to your computer and use it in GitHub Desktop.
upload.php
<?php
/* Lots of code */
$full_command_path = $base_path.' api:generate:all-place-images '.$sub_dir->getBasename(). ' --worker';
$Command = new Process($full_command_path);
$Command->run();
$output->write('Uploading place '.$sub_dir->getBasename(). '');
if ($Command->isSuccessful()) {
$output->writeln(' ok');
}
/* Some lines of code them exit happily */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment