GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 6c2a09...c47409 )
by Florian
03:18
created
Command/SyncCommand.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -67,15 +67,15 @@  discard block
 block discarded – undo
67 67
 	 */
68 68
 	protected function execute(InputInterface $input, OutputInterface $output) {
69 69
 		// Detect upload path
70
-		if(!self::$defaultUploadPath) {
70
+		if (!self::$defaultUploadPath) {
71 71
 			$root = $this->getContainer()->get('kernel')->getRootDir();
72
-			self::$defaultUploadPath = $root . '/../web/uploads';
72
+			self::$defaultUploadPath = $root.'/../web/uploads';
73 73
 		}
74 74
 		
75 75
 		// Get the entity argument
76 76
 		$entity = $input->getArgument('entity');
77 77
 		
78
-		if($entity == 'all') {
78
+		if ($entity == 'all') {
79 79
 			/**
80 80
 			 * @var EntityManager $entityManager
81 81
 			 */
@@ -91,12 +91,12 @@  discard block
 block discarded – undo
91 91
 			/**
92 92
 			 * @var ClassMetadata $m
93 93
 			 */
94
-			foreach($meta as $m) {
94
+			foreach ($meta as $m) {
95 95
 				
96
-				if($m->getReflectionClass()->isAbstract() || $m->getReflectionClass()->isInterface()) {
96
+				if ($m->getReflectionClass()->isAbstract() || $m->getReflectionClass()->isInterface()) {
97 97
 					continue;
98 98
 				}
99
-				if(!$mapper->isClassIndexable($m->getReflectionClass()->getName())) {
99
+				if (!$mapper->isClassIndexable($m->getReflectionClass()->getName())) {
100 100
 					continue;
101 101
 				}
102 102
 				$this->indexEntity($input, $output, $m->getReflectionClass()->getName());
@@ -117,14 +117,14 @@  discard block
 block discarded – undo
117 117
 		try {
118 118
 			// Get repository for the given entity type
119 119
 			$repository = $entityManager->getRepository($entity);
120
-		} catch(\Exception $e) {
120
+		} catch (\Exception $e) {
121 121
 			$output->writeln(sprintf('<error>No repository found for "%s", check your input</error>', $entity));
122 122
 			return;
123 123
 		}
124 124
 		
125 125
 		// Get all entities
126 126
 		$entities = $repository->findAll();
127
-		if(count($entities) == 0) {
127
+		if (count($entities) == 0) {
128 128
 			$output->writeln('<comment>No entities found for indexing</comment>');
129 129
 			return;
130 130
 		}
@@ -132,20 +132,20 @@  discard block
 block discarded – undo
132 132
 		$entitiesIndexed = 0;
133 133
 		
134 134
 		// Index each entity seperate
135
-		foreach($entities as $entity) {
136
-			if($this->getEntityToDocumentMapper()->isIndexable($entity)) {
135
+		foreach ($entities as $entity) {
136
+			if ($this->getEntityToDocumentMapper()->isIndexable($entity)) {
137 137
 				$document = $this->getEntityToDocumentMapper()->createDocument($entityManager, $entity);
138
-				if($document === false) continue;
138
+				if ($document === false) continue;
139 139
 				$this->getSearchService($entityManager)->saveDocument($document);
140 140
 				$entitiesIndexed++;
141
-				if($entitiesIndexed % 50 == 0) {
141
+				if ($entitiesIndexed % 50 == 0) {
142 142
 					$entityManager->flush();
143 143
 				}
144 144
 			}
145 145
 			
146 146
 		}
147 147
 		$entityManager->flush();
148
-		$output->writeln('<comment>Indexed ' . $entitiesIndexed . ' entities</comment>');
148
+		$output->writeln('<comment>Indexed '.$entitiesIndexed.' entities</comment>');
149 149
 	}
150 150
 
151 151
 	/**
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 	 * @return EntityToDocumentMapperInterface
154 154
 	 */
155 155
 	protected function getEntityToDocumentMapper() {
156
-		if(!$this->entityToDocumentMapper) {
156
+		if (!$this->entityToDocumentMapper) {
157 157
 			$this->entityToDocumentMapper = $this->getContainer()->get(EntityToDocumentMapperInterface::SERVICE_ID);
158 158
 		}
159 159
 		return $this->entityToDocumentMapper;
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 	 * @return SearchService
165 165
 	 */
166 166
 	protected function getSearchService(ObjectManager $manager) {
167
-		if(!$this->searchService) {
167
+		if (!$this->searchService) {
168 168
 			$this->searchService = $this->getContainer()->get(SearchService::SERVICE_ID);
169 169
 		}
170 170
 		$this->searchService->setObjectManager($manager);
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,9 @@
 block discarded – undo
135 135
 		foreach($entities as $entity) {
136 136
 			if($this->getEntityToDocumentMapper()->isIndexable($entity)) {
137 137
 				$document = $this->getEntityToDocumentMapper()->createDocument($entityManager, $entity);
138
-				if($document === false) continue;
138
+				if($document === false) {
139
+					continue;
140
+				}
139 141
 				$this->getSearchService($entityManager)->saveDocument($document);
140 142
 				$entitiesIndexed++;
141 143
 				if($entitiesIndexed % 50 == 0) {
Please login to merge, or discard this patch.