* cs fixes

* removed dead code
This commit is contained in:
Dávid Danyi 2018-07-25 18:39:08 +02:00
parent 0d5299c7b7
commit 22fe49d4ca
4 changed files with 9 additions and 14 deletions

View File

@ -194,7 +194,7 @@ class Activity implements \JsonSerializable
*/ */
public function addComment(Comment $comment): Activity public function addComment(Comment $comment): Activity
{ {
if(!$this->comments->contains($comment)) { if (!$this->comments->contains($comment)) {
$this->comments->add($comment); $this->comments->add($comment);
} }
return $this; return $this;
@ -206,7 +206,7 @@ class Activity implements \JsonSerializable
*/ */
public function removeComment(Comment $comment): Activity public function removeComment(Comment $comment): Activity
{ {
if($this->comments->contains($comment)) { if ($this->comments->contains($comment)) {
$this->comments->removeElement($comment); $this->comments->removeElement($comment);
} }
return $this; return $this;

View File

@ -5,4 +5,4 @@ namespace App\Entity;
class News class News
{ {
} }

View File

@ -64,4 +64,4 @@ class User implements \JsonSerializable
'displayName' => $this->getDisplayName(), 'displayName' => $this->getDisplayName(),
]; ];
} }
} }

View File

@ -8,10 +8,8 @@ use App\Entity\User;
use GuzzleHttp\Client; use GuzzleHttp\Client;
use GuzzleHttp\Cookie\CookieJarInterface; use GuzzleHttp\Cookie\CookieJarInterface;
use GuzzleHttp\Cookie\FileCookieJar; use GuzzleHttp\Cookie\FileCookieJar;
use function GuzzleHttp\Psr7\parse_query;
use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ResponseInterface;
use Ramsey\Uuid\Uuid; use Ramsey\Uuid\Uuid;
use Zend\Diactoros\Uri;
use Zend\Dom\Document; use Zend\Dom\Document;
use Zend\Expressive\Exception\MissingDependencyException; use Zend\Expressive\Exception\MissingDependencyException;
@ -40,8 +38,6 @@ class SkiesClientService
/** @var CookieJarInterface */ /** @var CookieJarInterface */
private $cookieJar = null; private $cookieJar = null;
private $counter = 0;
/** /**
* SkiesClientService constructor. * SkiesClientService constructor.
* @param Client $client * @param Client $client
@ -255,12 +251,12 @@ class SkiesClientService
->setDate(new \DateTime(sprintf("%s %s", $matches[1], $matches[2]))) ->setDate(new \DateTime(sprintf("%s %s", $matches[1], $matches[2])))
->setFinalEntry(new \DateTime($matches[3])) ->setFinalEntry(new \DateTime($matches[3]))
->setAccountable(str_replace( ->setAccountable(str_replace(
" ", " ",
" ", " ",
$matches[5] $matches[5]
? sprintf("%s (%s)", $matches[4], $matches[5]) ? sprintf("%s (%s)", $matches[4], $matches[5])
: $matches[4]) : $matches[4]
) ))
->setSignedUsers($signedUsers) ->setSignedUsers($signedUsers)
->setIsSignedup($isSignedUp) ->setIsSignedup($isSignedUp)
->setCanChangeSignup($canChangeSignup); ->setCanChangeSignup($canChangeSignup);
@ -444,7 +440,6 @@ class SkiesClientService
private function doSkiesRequest(string $method, string $url, $options = []): ResponseInterface private function doSkiesRequest(string $method, string $url, $options = []): ResponseInterface
{ {
$this->getAuthCookies(); $this->getAuthCookies();
$this->counter += 1;
$response = $this->client $response = $this->client
->request($method, $url, [ ->request($method, $url, [
'cookies' => $this->cookieJar, 'cookies' => $this->cookieJar,