Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Currentlive #214

Merged
merged 9 commits into from
Jul 22, 2018
Merged

Currentlive #214

merged 9 commits into from
Jul 22, 2018

Conversation

heiglandreas
Copy link
Member

No description provided.

@@ -157,6 +156,15 @@
),
),
),
'dataprivacy' => [

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used for alignment; tabs are not allowed
  • Line indented incorrectly; expected at least 20 spaces, found 12

@@ -157,6 +156,15 @@
),
),
),
'dataprivacy' => [
'type' => 'Literal',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used for alignment; tabs are not allowed
  • Line indented incorrectly; expected at least 20 spaces, found 16

@@ -157,6 +156,15 @@
),
),
),
'dataprivacy' => [
'type' => 'Literal',
'options' => [

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used for alignment; tabs are not allowed
  • Line indented incorrectly; expected at least 20 spaces, found 12

'dataprivacy' => [
'type' => 'Literal',
'options' => [
'route' => '/dataprivacy',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used for alignment; tabs are not allowed
  • Line indented incorrectly; expected at least 20 spaces, found 16

'type' => 'Literal',
'options' => [
'route' => '/dataprivacy',
'defaults' => [

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used for alignment; tabs are not allowed
  • Line indented incorrectly; expected at least 20 spaces, found 16

'options' => [
'route' => '/dataprivacy',
'defaults' => [
'action' => 'dataprivacy',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used for alignment; tabs are not allowed

'route' => '/dataprivacy',
'defaults' => [
'action' => 'dataprivacy',
],

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used for alignment; tabs are not allowed

'defaults' => [
'action' => 'dataprivacy',
],
],

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used for alignment; tabs are not allowed

'action' => 'dataprivacy',
],
],
],

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used for alignment; tabs are not allowed

'options' => array(
'route' => 'slack.php.ug',
'defaults' => array(
'__NAMESPACE' => 'Phpug\Controller',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used for alignment; tabs are not allowed

@@ -418,6 +448,10 @@
'label' => 'Legal',
'route' => 'ug/legal',
),
[

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used for alignment; tabs are not allowed
  • Line indented incorrectly; expected at least 12 spaces, found 8

@@ -418,6 +448,10 @@
'label' => 'Legal',
'route' => 'ug/legal',
),
[
'label' => 'Data-Privacy',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used for alignment; tabs are not allowed

@@ -418,6 +448,10 @@
'label' => 'Legal',
'route' => 'ug/legal',
),
[
'label' => 'Data-Privacy',
'route' => 'ug/dataprivacy',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used for alignment; tabs are not allowed
  • Line indented incorrectly; expected at least 12 spaces, found 8

[
'label' => 'Data-Privacy',
'route' => 'ug/dataprivacy',
],

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used for alignment; tabs are not allowed

@@ -111,6 +111,11 @@ public function legalAction()
return array();
}

public function dataprivacyAction()
{
return [];

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used to indent lines; tabs are not allowed
  • Line indented incorrectly; expected at least 8 spaces, found 4

@@ -120,7 +125,11 @@ public function redirectAction()
{
$id = $this->getEvent()->getRouteMatch()->getParam('ugid');
$base = $this->getEvent()->getRouteMatch()->getParam('base');

if ($id === 'slack') {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spaces must be used to indent lines; tabs are not allowed

@@ -120,7 +125,11 @@ public function redirectAction()
{
$id = $this->getEvent()->getRouteMatch()->getParam('ugid');
$base = $this->getEvent()->getRouteMatch()->getParam('base');

if ($id === 'slack') {
$this->redirect()->toUrl('https://phpug.slack.com');

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used to indent lines; tabs are not allowed
  • Line indented incorrectly; expected at least 12 spaces, found 8


if ($id === 'slack') {
$this->redirect()->toUrl('https://phpug.slack.com');
return;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used to indent lines; tabs are not allowed
  • Line indented incorrectly; expected at least 12 spaces, found 8

if ($id === 'slack') {
$this->redirect()->toUrl('https://phpug.slack.com');
return;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Spaces must be used to indent lines; tabs are not allowed
  • Line indented incorrectly; expected 8 spaces, found 4
  • Closing brace indented incorrectly; expected 8 spaces, found 4
  • Whitespace found at end of line

use Zend\Form\Form;
use Zend\Permissions\Acl\Acl;
use Zend\Mvc\Controller\AbstractActionController;
use Doctrine\ORM\EntityManager;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There must be one blank line after the last USE statement; 2 found;

];

$response = $this->client->request(
'POST',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Multi-line function call not indented correctly; expected 16 spaces but found 17


$response = $this->client->request(
'POST',
'https://'.$this->teamName.'.slack.com/api/users.admin.invite',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Multi-line function call not indented correctly; expected 16 spaces but found 17

}


} catch(Exception $e){

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Expected 1 space after CATCH keyword; 0 found
  • Expected 1 space after closing parenthesis; found 0

<?php
/**
* Copyright (c)2013-2013 heiglandreas
*

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whitespace found at end of line

*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whitespace found at end of line

* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @category

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whitespace found at end of line

<?php
/**
* Copyright (c)2013-2013 heiglandreas
*

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whitespace found at end of line

*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whitespace found at end of line

* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @category

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whitespace found at end of line

use Zend\Stdlib\Hydrator\ClassMethods;
use Zend\Validator;
use DoctrineModule\Stdlib\Hydrator\DoctrineObject;
use Phpug\Entity\Usergroup;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There must be one blank line after the last USE statement; 2 found;

use Phpug\Entity\Usergroup;


class SlackInviteFormFactory implements FactoryInterface

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Expected 1 space before FactoryInterface; 2 found


return $form;
}
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Expected 1 newline at end of file; 0 found
  • Line indented incorrectly; expected 0 spaces, found 1
  • Closing brace indented incorrectly; expected 0 spaces, found 1

use Phpug\Entity\Usergroup;


class SlackInviteFormFactory implements FactoryInterface

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Expected 1 space before FactoryInterface; 2 found


return $form;
}
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Expected 1 newline at end of file; 0 found
  • Line indented incorrectly; expected 0 spaces, found 1
  • Closing brace indented incorrectly; expected 0 spaces, found 1

$sharedManager->attach(
'Zend\Mvc\Controller\AbstractActionController',
'dispatch',
function($e) use ($sm) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Expected 1 space after FUNCTION keyword; 0 found

@@ -66,22 +74,25 @@ public function getList()
if (! isset($result[$twitter->getName()])) {
$result[$twitter->getName()] = array(
'screen_name' => $twitter->getName(),
'name' => $twitterService->getInfoForUser('name',
'name' => $this->twitter->getInfoForUser('name',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Opening parenthesis of a multi-line function call must be the last content on the line

$twitter->getName()),
'url' => $twitter->getUrl(),
'icon_url' => $twitterService->getInfoForUser('profile_image_url_https',
'icon_url' => $this->twitter->getInfoForUser('profile_image_url_https',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Opening parenthesis of a multi-line function call must be the last content on the line

$groupMapUrl = $this->url()->fromRoute(
'home',
array(),
array('force_canonical' => true)) . '?center=' . $group->getShortName();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Multi-line function call not indented correctly; expected 16 spaces but found 20
  • Closing parenthesis of a multi-line function call must be on a line by itself

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl
due to some changes in depending libraries up to this commit it was not
possible to get a local instance up and running…

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl

Verified

This commit was signed with the committer’s verified signature.
heiglandreas Andreas Heigl
@heiglandreas heiglandreas merged commit 5f6b0b9 into php-ug:master Jul 22, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants